

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

#home-section {
    animation: glow 1s infinite alternate;
    border-radius: 35px;
    transition: transform 0.5s ease-out;
}

#home-section:hover {
    transform: scale(1.05);
}

#home-section:not(:hover) {
    cursor: url('https://example.com/path/to/circle-cursor.png'), auto;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                    0 0 20px rgba(0, 255, 0, 0.8),
                    0 0 30px rgba(0, 0, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                    0 0 40px rgba(0, 255, 0, 0.8),
                    0 0 60px rgba(0, 0, 255, 0.8);
    }
}
  

  

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-image: url(https://cdn.discordapp.com/attachments/997233436672671774/1117165784158965801/86d2f12fb36a26ccdef613a1a2602d02.png);
}

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

html {
    font-size: 15pt;
}

u {
    text-decoration: underline;
}

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

em {
    font-style: italic;
}

code {
    background-color: #424549;
    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: #424549;
}

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;
    background-color: #1e2124;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: var(--viewport-height);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

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

#main>.inner {
    --padding-horizontal: 0rem;
    --padding-vertical: 0rem;
    --spacing: 1.75rem;
    --width: 40rem;
    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(0rem);
    max-width: calc(100% + 0rem + 0.4725px);
    width: calc(100% + 0rem + 0.4725px);
    border-radius: 2rem 2rem 0 0;
}

#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: 0rem !important;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

#main>.inner>.active>.full:first-child {
    margin-top: 0rem !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-instant #main,
body.is-instant #main>.inner>*,
body.is-instant #main>.inner>section>* {
    transition: none !important;
}

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

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

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

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

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

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

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

#image01 {
    text-align: center;
}

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

#image01 .frame img {
    transition: none;
}

#image02 {
    text-align: left;
}

#image02 .frame {
    width: 4.75rem;
    transition: none;
}

#image02 .frame img {
    transition: none;
}

#image07 {
    text-align: center;
}

#image07 .frame {
    width: 4.75rem;
    transition: none;
}

#image07 .frame img {
    transition: none;
}

#image08 {
    text-align: center;
}

#image08 .frame {
    width: 4.75rem;
    transition: none;
}

#image08 .frame img {
    transition: none;
}

#image09 {
    text-align: center;
}

#image09 .frame {
    width: 4.75rem;
    transition: none;
}

#image09 .frame img {
    transition: none;
}



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

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

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

#text04 {
    text-align: left;
    color: 	#99aab5;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    line-height: 1.5;
    font-weight: 700;
}

#text04 a {
    text-decoration: underline;
}

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

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

#text02 {
    text-align: center;
    margin-top: 5em;
    color: #878787;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75em;
    line-height: 1.375;
    font-weight: 400;
}

#text02 a {
    text-decoration: underline;
}

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

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

h1.style1,
h2.style1,
h3.style1,
p.style1 {
    text-align: left;
    color: #969696;
    font-family: 'Rubik', sans-serif;
    font-size: 0.75em;
    line-height: 1.625;
    font-weight: 500;
}

h1.style1 a,
h2.style1 a,
h3.style1 a,
p.style1 a {
    text-decoration: underline;
}

h1.style1 a:hover,
h2.style1 a:hover,
h3.style1 a:hover,
p.style1 a:hover {
    text-decoration: none;
}

h1.style1 span.p:nth-child(n + 2),
h2.style1 span.p:nth-child(n + 2),
h3.style1 span.p:nth-child(n + 2),
p.style1 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

#text10 {
    text-align: center;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75em;
    line-height: 1;
    font-weight: 300;
}

#text10 a {
    text-decoration: underline;
}

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

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

#text15 {
    text-align: left;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    line-height: 1;
    font-weight: 700;
}

#text15 a {
    text-decoration: underline;
}

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

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

#text16 {
    text-align: left;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875em;
    line-height: 1.375;
    font-weight: 400;
}

#text16 a {
    text-decoration: underline;
}

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

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

#text17 {
    text-align: center;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75em;
    line-height: 1;
    font-weight: 300;
}

#text17 a {
    text-decoration: underline;
}

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

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

#text18 {
    text-align: left;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    line-height: 1;
    font-weight: 700;
}

#text18 a {
    text-decoration: underline;
}

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

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

h1.style2,
h2.style2,
h3.style2,
p.style2 {
    text-align: left;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875em;
    line-height: 1.375;
    font-weight: 400;
}

h1.style2 a,
h2.style2 a,
h3.style2 a,
p.style2 a {
    text-decoration: underline;
}

h1.style2 a:hover,
h2.style2 a:hover,
h3.style2 a:hover,
p.style2 a:hover {
    text-decoration: none;
}

h1.style2 span.p:nth-child(n + 2),
h2.style2 span.p:nth-child(n + 2),
h3.style2 span.p:nth-child(n + 2),
p.style2 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

#text25 {
    text-align: left;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875em;
    line-height: 1.375;
    font-weight: 700;
}

#text25 a {
    text-decoration: underline;
}

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

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

#text24 {
    text-align: left;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75em;
    line-height: 1.375;
    font-weight: 400;
}

#text24 a {
    text-decoration: underline;
}

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

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

#text20 {
    text-align: center;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75em;
    line-height: 1;
    font-weight: 300;
}

#text20 a {
    text-decoration: underline;
}

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

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

#text21 {
    text-align: left;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    line-height: 1;
    font-weight: 700;
}

#text21 a {
    text-decoration: underline;
}

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

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

#text22 {
    text-align: left;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875em;
    line-height: 1.375;
    font-weight: 400;
}

#text22 a {
    text-decoration: underline;
}

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

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

#text11 {
    text-align: center;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75em;
    line-height: 1.375;
    font-weight: 400;
}

#text11 a {
    text-decoration: none;
}

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

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

#text05 {
    text-align: left;
    color: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875em;
    line-height: 1.375;
    font-weight: 400;
}

#text05 a {
    text-decoration: underline;
}

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

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

i {
    font-size: 1.7em;
}

i.fa-brands.fa-discord{
    vertical-align: inherit;
    font-size: 1rem;
}

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

#buttons04 {
    justify-content: center;
    gap: 0.75rem;
    flex-direction: row;
    flex-wrap: wrap;
}

#buttons04 li a {
    display: inline-block;
    width: 5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 1.25rem;
    vertical-align: middle;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875em;
    font-weight: 400;
    border-radius: 0.125rem;
    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;
}

#buttons04 .button {
    background-color: #7289DA;
    color: #ffffff	;
}

.buttons.style1 {
    justify-content: flex-start;
    gap: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
}

.buttons.style1 li a {
    display: inline-block;
    width: 8rem;
    height: 2.25rem;
    line-height: 2.25rem;
    padding: 0 0.5rem;
    vertical-align: middle;
    font-family: 'Rubik', sans-serif;
    font-size: 0.875em;
    font-weight: 400;
    border-radius: 0rem;
    box-shadow: 0rem 0.125rem 0rem 0rem #99aab5	;
    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;
}

.buttons.style1 .button {
    background-color: transparent;
    color: #99aab5	;
}

.buttons.style2 {
    justify-content: flex-start;
    gap: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
}

.buttons.style2 li a {
    display: inline-block;
    width: 10rem;
    height: 2.25rem;
    line-height: 2.25rem;
    padding: 0 0.5rem;
    vertical-align: middle;
    font-family: 'Rubik', sans-serif;
    font-size: 0.875em;
    font-weight: 400;
    border-radius: 0rem;
    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;
}

.buttons.style2 .button {
    background-color: transparent;
    color: #9E9E9E;
}

#buttons01 {
    justify-content: center;
    gap: 0.625rem;
    flex-direction: row;
    flex-wrap: wrap;
}

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

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

#buttons01 li a {
    display: inline-flex;
    width: 17.5rem;
    height: 2.25rem;
    line-height: 2.25rem;
    padding: 0 1.125rem;
    vertical-align: middle;
    font-family: 'Rubik', sans-serif;
    font-size: 0.75em;
    font-weight: 300;
    border-radius: 0.25rem;
    justify-content: flex-start;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons01 li a svg {
    display: block;
    fill: #DEDEDE;
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    min-width: 16px;
    width: 1.75em;
    margin-left: -0.125em;
    margin-right: calc(0.5em + 0rem);
    transition: fill 0.25s ease;
}

#buttons01 li a .label {
    direction: var(--site-language-direction);
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: right;
    width: 100%;
}

#buttons01 .button {
    background-color: #202225;
    color: #DEDEDE;
}

#buttons01 .button:hover {
    background-color: #99aab5;
}

span.label:hover {
    color: #23272a;
}

#buttons01 .n01 svg {
    fill: #00ACEE;
}

#buttons01 .n02 svg {
    fill: #FF2424;
}

#buttons01 .n03 svg {
    fill: #99aab5	;
}

#buttons01 .n04 svg {
    fill: #5865F2;
}

#buttons06 {
    justify-content: flex-start;
    gap: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
}

#buttons06 li a {
    display: inline-flex;
    width: auto;
    height: 2.125rem;
    line-height: 2.125rem;
    padding: 0 1.0625rem;
    vertical-align: middle;
    font-family: 'Rubik', sans-serif;
    font-size: 0.75em;
    font-weight: 400;
    border-radius: 0.375rem;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons06 li a svg {
    display: block;
    fill: #000000;
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    min-width: 16px;
    width: 1em;
    margin-left: -0.125em;
    margin-right: calc(0.5em + 0rem);
    transition: fill 0.25s ease;
}

#buttons06 li a .label {
    direction: var(--site-language-direction);
    overflow: hidden;
    text-overflow: ellipsis;
}

#buttons06 .button {
    background-color: #99aab5	;
    color: #000000;
}

#buttons07 {
    justify-content: flex-start;
    gap: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
}

#buttons07 li a {
    display: inline-flex;
    width: auto;
    height: 2.125rem;
    line-height: 2.125rem;
    padding: 0 1.0625rem;
    vertical-align: middle;
    font-family: 'Rubik', sans-serif;
    font-size: 0.75em;
    font-weight: 400;
    border-radius: 0.375rem;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons07 li a svg {
    display: block;
    fill: #000000;
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    min-width: 16px;
    width: 1em;
    margin-left: -0.125em;
    margin-right: calc(0.5em + 0rem);
    transition: fill 0.25s ease;
}

#buttons07 li a .label {
    direction: var(--site-language-direction);
    overflow: hidden;
    text-overflow: ellipsis;
}

#buttons07 .button {
    background-color: #99aab5	;
    color: #000000;
}

#buttons08 {
    justify-content: flex-start;
    gap: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
}

#buttons08 li a {
    display: inline-flex;
    width: auto;
    height: 2.125rem;
    line-height: 2.125rem;
    padding: 0 1.0625rem;
    vertical-align: middle;
    font-family: 'Rubik', sans-serif;
    font-size: 0.75em;
    font-weight: 400;
    border-radius: 0.375rem;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons08 li a svg {
    display: block;
    fill: #000000;
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    min-width: 16px;
    width: 1em;
    margin-left: -0.125em;
    margin-right: calc(0.5em + 0rem);
    transition: fill 0.25s ease;
}

#buttons08 li a .label {
    direction: var(--site-language-direction);
    overflow: hidden;
    text-overflow: ellipsis;
}

#buttons08 .button {
    background-color: #99aab5	;
    color: #000000;
}

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

#container07 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
    background-image: url('index.html'), url('https://cdn.discordapp.com/attachments/997233436672671774/1117165784158965801/86d2f12fb36a26ccdef613a1a2602d02.png');
    background-size: 256px, cover;
    background-position: center, center;
    background-repeat: repeat, repeat;
}

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

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

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

#container07>.wrapper {
    max-width: var(--width);
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container08 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #18191C;
    background-image: url('index.html');
    background-size: 256px;
    background-position: center;
    background-repeat: repeat;
    border-radius: 0rem;
}

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

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

#container08>.wrapper>.inner {
    --gutters: 1.25rem;
    --padding-horizontal: 2rem;
    --padding-vertical: 1.5rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

#container08>.wrapper {
    max-width: var(--width);
    width: 100%;
}

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

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

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

#container08.columns>.wrapper>.inner {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-evenly;
    flex-direction: row;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container08>.wrapper>.inner> :nth-child(1) {
    width: calc(20% + (var(--gutters) / 3));
}

#container08>.wrapper>.inner> :nth-child(2) {
    width: calc(60% + (var(--gutters) / 3));
}

#container08>.wrapper>.inner> :nth-child(3) {
    width: calc(20% + (var(--gutters) / 3));
}

#container02 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #18191C;
    background-image: url('index.html');
    background-size: 256px;
    background-position: center;
    background-repeat: repeat;
    border-radius: 0rem;
}

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

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

#container02>.wrapper>.inner {
    --gutters: 2rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

#container02>.wrapper {
    max-width: var(--width);
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container14 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #18191C;
    background-image: url('index.html');
    background-size: 256px;
    background-position: center;
    background-repeat: repeat;
    border-radius: 0rem;
}

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

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

#container14>.wrapper>.inner {
    --gutters: 2rem;
    --padding-horizontal: 1.875rem;
    --padding-vertical: 0.25rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

#container14>.wrapper {
    max-width: var(--width);
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container14>.wrapper>.inner> :nth-child(1) {
    width: calc(20% + (var(--gutters) / 5));
}

#container14>.wrapper>.inner> :nth-child(2) {
    width: calc(20% + (var(--gutters) / 5));
}

#container14>.wrapper>.inner> :nth-child(3) {
    width: calc(20% + (var(--gutters) / 5));
}

#container14>.wrapper>.inner> :nth-child(4) {
    width: calc(20% + (var(--gutters) / 5));
}

#container14>.wrapper>.inner> :nth-child(5) {
    width: calc(20% + (var(--gutters) / 5));
}

#container03 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #18191C;
    background-image: url('index.html');
    background-size: 256px;
    background-position: center;
    background-repeat: repeat;
    border-radius: 0rem;
}

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

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

#container03>.wrapper>.inner {
    --gutters: 2rem;
    --padding-horizontal: 2rem;
    --padding-vertical: 0.625rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

#container03>.wrapper {
    max-width: var(--width);
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container06 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #18191C;
    background-image: url('index.html');
    background-size: 256px;
    background-position: center;
    background-repeat: repeat;
    border-radius: 0rem;
}

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

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

#container06>.wrapper>.inner {
    --gutters: 0rem;
    --padding-vertical: 0.25rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

#container06>.wrapper {
    max-width: var(--width);
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container06>.wrapper>.inner> :nth-child(1) {
    width: 20%;
}

#container06>.wrapper>.inner> :nth-child(2) {
    width: 80%;
}

#container15 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #18191C;
    background-image: url('index.html');
    background-size: 256px;
    background-position: center;
    background-repeat: repeat;
    border-radius: 0 0 2rem 2rem;
}

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

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

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

#container15>.wrapper {
    max-width: var(--width);
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container09 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #18191C;
    background-image: url('index.html');
    background-size: 256px;
    background-position: center;
    background-repeat: repeat;
    border-radius: 0rem;
}

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

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

#container09>.wrapper>.inner {
    --gutters: calc(var(--padding-horizontal) * 2);
    --padding-horizontal: 1.25rem;
    --padding-vertical: 1.875rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

#container09>.wrapper {
    max-width: var(--width);
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container10 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #18191C;
    background-image: url('index.html');
    background-size: 256px;
    background-position: center;
    background-repeat: repeat;
    border-radius: 0rem;
}

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

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

#container10>.wrapper>.inner {
    --gutters: calc(var(--padding-horizontal) * 2);
    --padding-horizontal: 1.25rem;
    --padding-vertical: 1.875rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

#container10>.wrapper {
    max-width: var(--width);
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container10>.wrapper>.inner> :nth-child(1) {
    width: calc(20% + (var(--gutters) / 2));
}

#container10>.wrapper>.inner> :nth-child(2) {
    width: calc(80% + (var(--gutters) / 2));
}

#container05 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #18191C;
    background-image: url('index.html');
    background-size: 256px;
    background-position: center;
    background-repeat: repeat;
    border-radius: 0rem;
}

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

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

#container05>.wrapper>.inner {
    --gutters: calc(var(--padding-horizontal) * 2);
    --padding-horizontal: 1.25rem;
    --padding-vertical: 1.875rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

#container05>.wrapper {
    max-width: var(--width);
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container05>.wrapper>.inner> :nth-child(1) {
    width: calc(20% + (var(--gutters) / 2));
}

#container05>.wrapper>.inner> :nth-child(2) {
    width: calc(80% + (var(--gutters) / 2));
}

#container04 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #18191C;
    background-image: url('index.html');
    background-size: 256px;
    background-position: center;
    background-repeat: repeat;
    border-radius: 0rem;
}

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

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

#container04>.wrapper>.inner {
    --gutters: calc(var(--padding-horizontal) * 2);
    --padding-horizontal: 1.25rem;
    --padding-vertical: 1.875rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

#container04>.wrapper {
    max-width: var(--width);
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container04>.wrapper>.inner> :nth-child(1) {
    width: calc(20% + (var(--gutters) / 2));
}

#container04>.wrapper>.inner> :nth-child(2) {
    width: calc(80% + (var(--gutters) / 2));
}

#container01 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #18191C;
    background-image: url('index.html');
    background-size: 256px;
    background-position: center;
    background-repeat: repeat;
    border-radius: 0rem;
}

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

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

#container01>.wrapper>.inner {
    --gutters: 2rem;
    --padding-horizontal: 2rem;
    --padding-vertical: 2.125rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

#container01>.wrapper {
    max-width: var(--width);
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#divider01:before {
    width: 36rem;
    border-top: solid 3px #494C52;
    height: 3px;
    margin-top: -1.5px;
}

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

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

#divider03:before {
    width: 36rem;
    border-top: solid 1px #2c2f33;
    height: 1px;
    margin-top: -0.5px;
}

#footer {
    margin-top: 0.75rem !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: #DBDBDB;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75em;
    line-height: 1.375;
    font-weight: 400;
}

#table01 a {
    text-decoration: none;
}

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

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

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

#table01 tbody tr {
    border-top: solid 1px rgba(73, 76, 82, 0.141);
}

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

.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: #99aab5	 !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(173, 176, 184, 0.498);
}

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

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

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

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

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

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

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

    #main>.inner {
        --padding-horizontal: 0rem;
        --padding-vertical: 0rem;
        --spacing: 0.75rem;
    }

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

    #main>.inner>*>.full.screen {
        margin-left: -50vw;
    }

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

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

    #image01 .frame {
        width: 8.625rem;
    }

    #image02 .frame {
        width: 4.75rem;
    }

    #image07 .frame {
        width: 4.75rem;
    }

    #image08 .frame {
        width: 4.75rem;
    }

    #image09 .frame {
        width: 4.75rem;
    }

    #image04 .frame {
        width: 4.75rem;
    }

    #text04 {
        display: contents;
        letter-spacing: 0rem;
        width: 80%;
        font-size: 1em;
        line-height: 1.5;
    }

    #text02 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.75em;
        line-height: 1.375;
    }

    h1.style1,
    h2.style1,
    h3.style1,
    p.style1 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.75em;
        line-height: 1.625;
    }

    #text10 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.75em;
        line-height: 1;
    }

    #text15 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 1.5em;
        line-height: 1;
    }

    #text16 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.875em;
        line-height: 1.375;
    }

    #text17 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.75em;
        line-height: 1;
    }

    #text18 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 1.5em;
        line-height: 1;
    }

    h1.style2,
    h2.style2,
    h3.style2,
    p.style2 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.875em;
        line-height: 1.375;
    }

    #text25 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.875em;
        line-height: 1.375;
    }

    #text24 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.75em;
        line-height: 1.375;
    }

    #text20 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.75em;
        line-height: 1;
    }

    #text21 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 1.5em;
        line-height: 1;
    }

    #text22 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.875em;
        line-height: 1.375;
    }

    #text11 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.75em;
        line-height: 1.375;
    }

    #text05 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 0.875em;
        line-height: 1.375;
    }

    #buttons04 li a {
        letter-spacing: 0rem;
        font-size: 1em;
        width: 10rem;
    }

    .buttons.style1 li a {
        letter-spacing: 0rem;
        font-size: 0.875em;
    }

    .buttons.style2 li a {
        letter-spacing: 0rem;
        font-size: 0.75em;
    }

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

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

    #buttons01 li a {
        letter-spacing: 0rem;
        font-size: 0.75em;
    }

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

    #buttons06 li a {
        letter-spacing: 0rem;
        font-size: 0.75em;
    }

    #buttons06 li a svg {
        width: 1em;
    }

    #buttons07 li a {
        letter-spacing: 0rem;
        font-size: 0.75em;
    }

    #buttons07 li a svg {
        width: 1em;
    }

    #buttons08 li a {
        letter-spacing: 0rem;
        font-size: 0.75em;
    }

    #buttons08 li a svg {
        width: 1em;
    }

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

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

    #container07>.wrapper>.inner {
        --gutters: 2rem;
        --padding-horizontal: 0rem;
        --padding-vertical: 3.5rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    #container08>.wrapper>.inner {
        --gutters: 1.25rem;
        --padding-horizontal: 2rem;
        --padding-vertical: 1.5rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    #container08>.wrapper>.inner> :nth-child(1) {
        min-height: 100% !important;
        width: 100% !important;
    }

    #container08>.wrapper>.inner> :nth-child(2) {
        min-height: 100% !important;
        width: 100% !important;
    }

    #container08>.wrapper>.inner> :nth-child(3) {
        min-height: 100% !important;
        width: 100% !important;
    }

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

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

    #container02>.wrapper>.inner {
        --gutters: 2rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    #container14>.wrapper>.inner {
        --gutters: 0rem;
        --padding-horizontal: 1.875rem;
        --padding-vertical: 0.875rem;
    }

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

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

    #container03>.wrapper>.inner {
        --gutters: 2rem;
        --padding-horizontal: 2rem;
        --padding-vertical: 0.625rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    #container06>.wrapper>.inner {
        --gutters: 0.875rem;
        --padding-horizontal: 1.5rem;
        --padding-vertical: 0.25rem;
    }

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

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

    #container15>.wrapper>.inner {
        --gutters: 2rem;
        --padding-horizontal: 2rem;
        --padding-vertical: 1rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    #container09>.wrapper>.inner {
        --gutters: 0.875rem;
        --padding-horizontal: 1.5rem;
        --padding-vertical: 1.875rem;
    }

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

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

    #container10>.wrapper>.inner {
        --gutters: 0.875rem;
        --padding-horizontal: 1.5rem;
        --padding-vertical: 1.875rem;
    }

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

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

    #container05>.wrapper>.inner {
        --gutters: 0.875rem;
        --padding-horizontal: 1.5rem;
        --padding-vertical: 1.875rem;
    }

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

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

    #container04>.wrapper>.inner {
        --gutters: 0.875rem;
        --padding-horizontal: 1.5rem;
        --padding-vertical: 1.875rem;
    }

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

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

    #container01>.wrapper>.inner {
        --gutters: 2rem;
        --padding-horizontal: 2rem;
        --padding-vertical: 2.125rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    #divider01:before {
        width: 36rem;
    }

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

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

    #divider03:before {
        width: 36rem;
    }

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

    #table01 {
        letter-spacing: 0rem;
        font-size: 0.75em;
        line-height: 1.375;
    }

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

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

    .buttons.style1 {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .buttons.style1 li a {
        max-width: 32rem;
        width: 100%;
    }

    .buttons.style2 {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .buttons.style2 li a {
        max-width: 32rem;
        width: 100%;
    }

    #buttons01 li a {
        width: 10.75rem;
    }

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

    #buttons06 li a {
        max-width: 32rem;
        width: 100%;
    }

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

    #buttons07 li a {
        max-width: 32rem;
        width: 100%;
    }

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

    #buttons08 li a {
        max-width: 32rem;
        width: 100%;
    }
}

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

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

    #main>.inner>*>.full.screen {
        margin-left: -50vw;
    }

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

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

    #text04 {
        font-size: 1em;
    }

    #text02 {
        font-size: 0.75em;
    }

    h1.style1,
    h2.style1,
    h3.style1,
    p.style1 {
        font-size: 0.75em;
    }

    #text10 {
        font-size: 0.75em;
    }

    #text15 {
        font-size: 1.5em;
    }

    #text16 {
        font-size: 0.875em;
    }

    #text17 {
        font-size: 0.75em;
    }

    #text18 {
        font-size: 1.5em;
    }

    h1.style2,
    h2.style2,
    h3.style2,
    p.style2 {
        font-size: 0.875em;
    }

    #text25 {
        font-size: 0.875em;
    }

    #text24 {
        font-size: 0.75em;
    }

    #text20 {
        font-size: 0.75em;
    }

    #text21 {
        font-size: 1.5em;
    }

    #text22 {
        font-size: 0.875em;
    }

    #text11 {
        font-size: 0.75em;
    }

    #text05 {
        font-size: 0.875em;
    }

    #buttons04 {
        gap: 0.5625rem;
    }

    .buttons.style1 {
        gap: 1.5rem;
    }

    .buttons.style2 {
        gap: 1.5rem;
    }

    #buttons01 {
        gap: 0.46875rem;
    }

    #buttons06 {
        gap: 1.5rem;
    }

    #buttons07 {
        gap: 1.5rem;
    }

    #buttons08 {
        gap: 1.5rem;
    }

    #container07>.wrapper>.inner {
        --gutters: 1.5rem;
        --padding-horizontal: 0rem;
        --padding-vertical: 2.625rem;
    }

    #container08>.wrapper>.inner {
        --gutters: 0.9375rem;
        --padding-horizontal: 1.5rem;
        --padding-vertical: 1.125rem;
    }

    #container02>.wrapper>.inner {
        --gutters: 1.5rem;
    }

    #container14>.wrapper>.inner {
        --gutters: 0rem;
        --padding-horizontal: 1.40625rem;
        --padding-vertical: 0.65625rem;
    }

    #container03>.wrapper>.inner {
        --gutters: 1.5rem;
        --padding-horizontal: 1.5rem;
        --padding-vertical: 0.46875rem;
    }

    #container06>.wrapper>.inner {
        --gutters: 0.875rem;
        --padding-horizontal: 1.125rem;
        --padding-vertical: 0.1875rem;
    }

    #container15>.wrapper>.inner {
        --gutters: 1.5rem;
        --padding-horizontal: 1.5rem;
        --padding-vertical: 0.75rem;
    }

    #container09>.wrapper>.inner {
        --gutters: 0.875rem;
        --padding-horizontal: 1.125rem;
        --padding-vertical: 1.40625rem;
    }

    #container10>.wrapper>.inner {
        --gutters: 0.875rem;
        --padding-horizontal: 1.125rem;
        --padding-vertical: 1.40625rem;
    }

    #container05>.wrapper>.inner {
        --gutters: 0.875rem;
        --padding-horizontal: 1.125rem;
        --padding-vertical: 1.40625rem;
    }

    #container04>.wrapper>.inner {
        --gutters: 0.875rem;
        --padding-horizontal: 1.125rem;
        --padding-vertical: 1.40625rem;
    }

    #container01>.wrapper>.inner {
        --gutters: 1.5rem;
        --padding-horizontal: 1.5rem;
        --padding-vertical: 1.59375rem;
    }

    #table01 {
        font-size: 0.75em;
    }
      
}