html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

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

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

input[type="text"],
input[type="email"],
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none
}

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

body {
    line-height: 1.0;
    min-height: var(--viewport-height);
    min-width: 320px;
    overflow-x: hidden;
    word-wrap: break-word;
    background-color: rgb(18, 18, 18);
}

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

#title {
    display: flex;
    justify-content: space-between;
    /* pushes children to opposite sides */
    align-items: center
}

#actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

:root {
    --background-height: 100vh;
    --site-language-alignment: left;
    --site-language-direction: ltr;
    --site-language-flex-alignment: flex-start;
    --site-language-indent-left: 1;
    --site-language-indent-right: 0;
    --site-language-margin-left: 0;
    --site-language-margin-right: auto;
    --viewport-height: 100vh;
}

html {
    font-size: 14pt;
}

u {
    text-decoration: underline;
}

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

em {
    font-style: italic;
}

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

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

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

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

s {
    text-decoration: line-through;
}

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

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

a {
    color: inherit;
    text-decoration: underline;
    transition: none;
}

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

unloaded-script {
    display: none;
}

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

#main {
    --alignment: var(--site-language-alignment);
    --flex-alignment: var(--site-language-flex-alignment);
    --indent-left: var(--site-language-indent-left);
    --indent-right: var(--site-language-indent-right);
    --margin-left: var(--site-language-margin-left);
    --margin-right: var(--site-language-margin-right);
    --border-radius-tl: 0rem;
    --border-radius-tr: 0rem;
    --border-radius-br: 0rem;
    --border-radius-bl: 0rem;
    align-items: center;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    max-width: 100%;
    position: relative;
    text-align: var(--alignment);
    z-index: 1;
    background-color: #c59b93;
    border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
    transition: opacity 0.75s ease 1s, transform 0.75s ease 1s;
}

#main>.inner {
    --padding-horizontal: 1.3rem;
    --padding-vertical: 1.3rem;
    --spacing: 1.375rem;
    --width: 62rem;
    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);
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

#main>.inner>footer {
    margin-top: var(--spacing);
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

body.is-loading #main {
    opacity: 0;
    transform: scale(0.97875);
}

body #loader {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    height: 6.25rem;
    left: calc(50% - 3.125rem);
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: calc(50% - 3.125rem);
    transition: opacity 1s ease, visibility 1s;
    visibility: hidden;
    width: 6.25rem;
    z-index: 100000;
}

body.with-loader #loader {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUgeyBmaWxsOiAjRkZGRkZGOyB9PC9zdHlsZT48Y2lyY2xlIGN4PSIyNCIgY3k9IjQ4IiByPSIzIiBvcGFjaXR5PSIxIj48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiBiZWdpbj0iMHMiIGR1cj0iMXMiIHZhbHVlcz0iMjszOzI7MjsyIiByZXBlYXREdXI9ImluZGVmaW5pdGUiIC8+PGFuaW1hdGUgYXR0cmlidXRlTmFtZT0ib3BhY2l0eSIgYmVnaW49IjBzIiBkdXI9IjFzIiB2YWx1ZXM9IjAuMzc1OzE7MC4zNzU7MC4zNzU7MC4zNzUiIHJlcGVhdER1cj0iaW5kZWZpbml0ZSIgLz48L2NpcmNsZT48Y2lyY2xlIGN4PSIzNiIgY3k9IjQ4IiByPSIyIiBvcGFjaXR5PSIwLjM3NSI+PGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iciIgYmVnaW49IjAuMnMiIGR1cj0iMXMiIHZhbHVlcz0iMjszOzI7MjsyIiByZXBlYXREdXI9ImluZGVmaW5pdGUiIC8+PGFuaW1hdGUgYXR0cmlidXRlTmFtZT0ib3BhY2l0eSIgYmVnaW49IjAuMnMiIGR1cj0iMXMiIHZhbHVlcz0iMC4zNzU7MTswLjM3NTswLjM3NTswLjM3NSIgcmVwZWF0RHVyPSJpbmRlZmluaXRlIiAvPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjIiIG9wYWNpdHk9IjAuMzc1Ij48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiBiZWdpbj0iMC40cyIgZHVyPSIxcyIgdmFsdWVzPSIyOzM7MjsyOzIiIHJlcGVhdER1cj0iaW5kZWZpbml0ZSIgLz48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iMC40cyIgZHVyPSIxcyIgdmFsdWVzPSIwLjM3NTsxOzAuMzc1OzAuMzc1OzAuMzc1IiByZXBlYXREdXI9ImluZGVmaW5pdGUiIC8+PC9jaXJjbGU+PGNpcmNsZSBjeD0iNjAiIGN5PSI0OCIgcj0iMiIgb3BhY2l0eT0iMC4zNzUiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9InIiIGJlZ2luPSIwLjZzIiBkdXI9IjFzIiB2YWx1ZXM9IjI7MzsyOzI7MiIgcmVwZWF0RHVyPSJpbmRlZmluaXRlIiAvPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9Im9wYWNpdHkiIGJlZ2luPSIwLjZzIiBkdXI9IjFzIiB2YWx1ZXM9IjAuMzc1OzE7MC4zNzU7MC4zNzU7MC4zNzUiIHJlcGVhdER1cj0iaW5kZWZpbml0ZSIgLz48L2NpcmNsZT48Y2lyY2xlIGN4PSI3MiIgY3k9IjQ4IiByPSIyIiBvcGFjaXR5PSIwLjM3NSI+PGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iciIgYmVnaW49IjAuOHMiIGR1cj0iMXMiIHZhbHVlcz0iMjszOzI7MjsyIiByZXBlYXREdXI9ImluZGVmaW5pdGUiIC8+PGFuaW1hdGUgYXR0cmlidXRlTmFtZT0ib3BhY2l0eSIgYmVnaW49IjAuOHMiIGR1cj0iMXMiIHZhbHVlcz0iMC4zNzU7MTswLjM3NTswLjM3NTswLjM3NSIgcmVwZWF0RHVyPSJpbmRlZmluaXRlIiAvPjwvY2lyY2xlPjwvc3ZnPg==');
    opacity: 1;
    transform: scale(1.0);
    visibility: visible;
}

body.is-loading {
    pointer-events: none;
}

body.is-playing.with-loader #loader {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.25s ease, transform 0.75s ease, visibility 0.25s;
    visibility: hidden;
}

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

body.is-loading #main>.inner>section>* {
    opacity: 0;
    transform: scale(0.94375);
}

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

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

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

#main>.inner>section.inactive {
    opacity: 0;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
    transform: scale(0.94375);
}

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

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

#container02 {
    --alignment: center;
    --flex-alignment: center;
    --indent-left: 1;
    --indent-right: 1;
    --margin-left: auto;
    --margin-right: auto;
}

#container02>.wrapper {
    display: block;
    margin: 0 auto 0 auto;
    width: 68rem;
    background-color: #FAE9E6;
    border-color: rgba(0, 0, 0, 0.149);
    border-style: solid;
}

#container02>.wrapper>.inner {
    --gutters: calc(var(--padding-horizontal) * 2);
    --padding-horizontal: 4.5rem;
    --padding-vertical: 0.75rem;
    --spacing: 0rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

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

#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.columns>.wrapper>.inner>*:before {
    border-left: solid 1px rgba(0, 0, 0, 0.149);
    content: '';
    display: block;
    margin-left: calc((var(--gutters) * -0.5) - 0.5px);
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
}

#container02.columns>.wrapper>.inner>*:first-child:before {
    display: none;
}

#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) + 0.5px);
    max-width: none !important;
    width: calc(100% + var(--gutters) + 0.4725px - 1px);
}

#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 - 0.5px);
}

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

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

#container04 {
    --alignment: center;
    --flex-alignment: center;
    --indent-left: 1;
    --indent-right: 1;
    --margin-left: auto;
    --margin-right: auto;
}

#container04>.wrapper {
    display: block;
    margin: 0 auto 0 auto;
    width: 68rem;
    background-color: #FAE9E6;
    border-color: rgba(0, 0, 0, 0.149);
    border-style: solid;
}

#container04>.wrapper>.inner {
    --gutters: calc(var(--padding-horizontal) * 2);
    --padding-horizontal: 4.5rem;
    --padding-vertical: 0.75rem;
    --spacing: 0rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

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

#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.columns>.wrapper>.inner>*:before {
    border-left: solid 1px rgba(0, 0, 0, 0.149);
    content: '';
    display: block;
    margin-left: calc((var(--gutters) * -0.5) - 0.5px);
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
}

#container04.columns>.wrapper>.inner>*:first-child:before {
    display: none;
}

#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) + 0.5px);
    max-width: none !important;
    width: calc(100% + var(--gutters) + 0.4725px - 1px);
}

#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 - 0.5px);
}

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

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

#container01 {
    --alignment: center;
    --flex-alignment: center;
    --indent-left: 1;
    --indent-right: 1;
    --margin-left: auto;
    --margin-right: auto;
}

#container01>.wrapper {
    display: block;
    margin: 0 auto 0 auto;
    width: 68rem;
    background-color: #FAE9E6;
    border-color: rgba(0, 0, 0, 0.149);
    border-style: solid;
}

#container01>.wrapper>.inner {
    --gutters: calc(var(--padding-horizontal) * 2);
    --padding-horizontal: 4.5rem;
    --padding-vertical: 4.625rem;
    --spacing: 0rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

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

#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.columns>.wrapper>.inner>*:before {
    border-left: solid 1px rgba(0, 0, 0, 0.149);
    content: '';
    display: block;
    margin-left: calc((var(--gutters) * -0.5) - 0.5px);
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
}

#container01.columns>.wrapper>.inner>*:first-child:before {
    display: none;
}

#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) + 0.5px);
    max-width: none !important;
    width: calc(100% + var(--gutters) + 0.4725px - 1px);
}

#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 - 0.5px);
}

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

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

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

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

#container03 {
    --alignment: center;
    --flex-alignment: center;
    --indent-left: 1;
    --indent-right: 1;
    --margin-left: auto;
    --margin-right: auto;
}

#container03>.wrapper {
    display: block;
    margin: 0 auto 0 auto;
    width: 68rem;
    background-color: #FAE9E6;
    border-color: rgba(0, 0, 0, 0.149);
    border-style: solid;
}

#container03>.wrapper>.inner {
    --gutters: calc(var(--padding-horizontal) * 2);
    --padding-horizontal: 4.5rem;
    --padding-vertical: 4.625rem;
    --spacing: 0rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

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

#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.columns>.wrapper>.inner>*:before {
    border-left: solid 1px rgba(0, 0, 0, 0.149);
    content: '';
    display: block;
    margin-left: calc((var(--gutters) * -0.5) - 0.5px);
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
}

#container03.columns>.wrapper>.inner>*:first-child:before {
    display: none;
}

#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) + 0.5px);
    max-width: none !important;
    width: calc(100% + var(--gutters) + 0.4725px - 1px);
}

#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 - 0.5px);
}

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

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

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

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

#header {
    margin-bottom: 0rem !important;
}

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


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

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

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

h1.style12,
h2.style12,
h3.style12,
p.style12 {
    text-align: left;
    color: #914D4F;
    font-family: 'DM Mono', 'nonospace';
    font-size: 1.25em;
    line-height: 1.25;
    font-weight: 300;
}

p.mText {
    text-align: justify;
    color: #914D4F;
    font-family: 'DM Mono', 'nonospace';
    font-size: 1.25em;
    line-height: 1.25;
    font-weight: 300;
}

.ltr {
    display: flex;
    justify-content: space-between;
}

pre {
    white-space: pre-wrap;
    /* wraps lines */
    word-wrap: break-word;
    /* breaks long words */
    overflow-x: auto;
    /* allows scrolling if needed */
}

h1.mText,
h2.mText,
h3.mText {
    text-align: center;
    color: #914D4F;
    font-family: 'DM Mono', 'nonospace';
    font-size: 32px;
    line-height: 1.25;
    font-weight: 300;
}

h1.style12 mark,
h2.style12 mark,
h3.style12 mark,
p.style12 mark {
    background-color: transparent;
}

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

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

h1.style9:not(:first-child),
h2.style9:not(:first-child),
h3.style9:not(:first-child),
p.style9:not(:first-child) {
    margin-top: 0rem !important;
}

h1.style9:not(:last-child),
h2.style9:not(:last-child),
h3.style9:not(:last-child),
p.style9:not(:last-child) {
    margin-bottom: 0rem !important;
}

h1.style9,
h2.style9,
h3.style9,
p.style9 {
    text-align: left;
    color: #9E4244;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 1.125em;
    line-height: 1.25;
    font-weight: 400;
}

h1.style9 strong,
h2.style9 strong,
h3.style9 strong,
p.style9 strong {
    color: rgba(158, 66, 68, 0.412);
}

h1.style9 mark,
h2.style9 mark,
h3.style9 mark,
p.style9 mark {
    background-color: transparent;
}

h1.style9 a:hover,
h2.style9 a:hover,
h3.style9 a:hover,
p.style9 a:hover {
    color: rgba(158, 66, 68, 0.569);
}

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

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

h1.style6:not(:first-child),
h2.style6:not(:first-child),
h3.style6:not(:first-child),
p.style6:not(:first-child) {
    margin-top: 0rem !important;
}

h1.style6:not(:last-child),
h2.style6:not(:last-child),
h3.style6:not(:last-child),
p.style6:not(:last-child) {
    margin-bottom: 0rem !important;
}

h1.style6,
h2.style6,
h3.style6,
p.style6 {
    text-align: left;
    color: #9E4244;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 1.375em;
    line-height: 1.25;
    font-weight: 400;
}

h1.style6 mark,
h2.style6 mark,
h3.style6 mark,
p.style6 mark {
    background-color: transparent;
}

h1.style6 a,
h2.style6 a,
h3.style6 a,
p.style6 a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

h1.style6 a:hover,
h2.style6 a:hover,
h3.style6 a:hover,
p.style6 a:hover {
    color: #FFFFFF;
}

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

h1.style7:not(:first-child),
h2.style7:not(:first-child),
h3.style7:not(:first-child),
p.style7:not(:first-child) {
    margin-top: 0rem !important;
}

h1.style7:not(:last-child),
h2.style7:not(:last-child),
h3.style7:not(:last-child),
p.style7:not(:last-child) {
    margin-bottom: 0rem !important;
}

h1.style7,
h2.style7,
h3.style7,
p.style7 {
    text-align: left;
    color: #9E4244;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 1.125em;
    line-height: 1.25;
    font-weight: 400;
}

h1.style7 mark,
h2.style7 mark,
h3.style7 mark,
p.style7 mark {
    background-color: transparent;
}

h1.style7 a:hover,
h2.style7 a:hover,
h3.style7 a:hover,
p.style7 a:hover {
    color: rgba(158, 66, 68, 0.569);
}

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

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

h1.style11:not(:first-child),
h2.style11:not(:first-child),
h3.style11:not(:first-child),
p.style11:not(:first-child) {
    margin-top: 0rem !important;
}

h1.style11:not(:last-child),
h2.style11:not(:last-child),
h3.style11:not(:last-child),
p.style11:not(:last-child) {
    margin-bottom: 0rem !important;
}

h1.style11,
h2.style11,
h3.style11,
p.style11 {
    text-align: left;
    color: #9E4244;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 1.125em;
    line-height: 1.25;
    font-weight: 400;
}

h1.style11 mark,
h2.style11 mark,
h3.style11 mark,
p.style11 mark {
    background-color: transparent;
}

p.style11 strongn {
    color: rgba(158, 66, 68, 0.412);
}

h1.style11 a:hover,
h2.style11 a:hover,
h3.style11 a:hover,
p.style11 a:hover {
    color: rgba(158, 66, 68, 0.631);
}

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

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

h1.style13:not(:first-child),
h2.style13:not(:first-child),
h3.style13:not(:first-child),
p.style13:not(:first-child) {
    margin-top: 0rem !important;
}

h1.style13:not(:last-child),
h2.style13:not(:last-child),
h3.style13:not(:last-child),
p.style13:not(:last-child) {
    margin-bottom: 0rem !important;
}

h1.style13,
h2.style13,
h3.style13,
p.style13 {
    text-align: left;
    color: #9E4244;
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 1.125em;
    line-height: 1.25;
    font-weight: 400;
}

h1.style13 mark,
h2.style13 mark,
h3.style13 mark,
p.style13 mark {
    background-color: transparent;
}

h1.style13 a:hover,
h2.style13 a:hover,
h3.style13 a:hover,
p.style13 a:hover {
    color: rgba(158, 66, 68, 0.569);
}

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

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

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

.image.style1 {
    text-align: center;
}

.image.style1:not(:first-child) {
    margin-top: 1.25rem !important;
}

.image.style1:not(:last-child) {
    margin-bottom: 1.25rem !important;
}

.image.style1 .frame {
    width: 15rem;
    height: 15rem;
    transition: none;
}

.image.style1 img {
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    width: 100% !important;
}

.image.style1 .frame img {
    transition: none;
}

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

hr:before {
    content: '';
}

hr.style1:not(:first-child) {
    margin-top: 0.25rem !important;
}

hr.style1:not(:last-child) {
    margin-bottom: 0.25rem !important;
}

hr.style1:before {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.522);
    height: 3px;
    border-radius: 0px;
}

.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 0em;
    position: relative;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    z-index: 1;
}

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

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

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

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

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

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

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

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

#credits span {
    color: rgba(145, 77, 79, 0.498);
}

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

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

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

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

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

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

    #main>.inner {
        --padding-horizontal: 1rem;
        --padding-vertical: 2rem;
        --spacing: 1.375rem;
    }

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

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

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

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

    #container02>.wrapper>.inner {
        --gutters: 6rem;
        --padding-horizontal: 2rem;
        --padding-vertical: 1.125rem;
        --spacing: 0rem;
    }

    #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>span:first-child+div:before {
        display: none !important;
    }

    #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>*:before {
        border-top: solid 1px rgba(0, 0, 0, 0.149) !important;
        height: 0 !important;
        margin-left: 0 !important;
        top: auto !important;
        margin-top: calc((var(--gutters) * -0.5) - 0.5px) !important;
        left: 0 !important;
        width: 100% !important;
    }

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

    #container02.columns>.wrapper>.inner>*:first-child:before {
        display: none !important;
    }

    #container02.columns>.wrapper>.inner>*:last-child:before {
        display: block !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) + 0.5px) !important;
    }

    #container02.columns>.wrapper>.inner>div>.full:last-child {
        margin-bottom: calc((var(--gutters) * -0.5) + 0.5px) !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;
    }

    #container04>.wrapper>.inner {
        --gutters: 6rem;
        --padding-horizontal: 2rem;
        --padding-vertical: 1.125rem;
        --spacing: 0rem;
    }

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

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

    #container04.columns>.wrapper>.inner>span:first-child+div:before {
        display: none !important;
    }

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

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

    #container04.columns>.wrapper>.inner>*:before {
        border-top: solid 1px rgba(0, 0, 0, 0.149) !important;
        height: 0 !important;
        margin-left: 0 !important;
        top: auto !important;
        margin-top: calc((var(--gutters) * -0.5) - 0.5px) !important;
        left: 0 !important;
        width: 100% !important;
    }

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

    #container04.columns>.wrapper>.inner>*:first-child:before {
        display: none !important;
    }

    #container04.columns>.wrapper>.inner>*:last-child:before {
        display: block !important;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    #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>span:first-child+div:before {
        display: none !important;
    }

    #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>*:before {
        border-top: solid 1px rgba(0, 0, 0, 0.149) !important;
        height: 0 !important;
        margin-left: 0 !important;
        top: auto !important;
        margin-top: calc((var(--gutters) * -0.5) - 0.5px) !important;
        left: 0 !important;
        width: 100% !important;
    }

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

    #container01.columns>.wrapper>.inner>*:first-child:before {
        display: none !important;
    }

    #container01.columns>.wrapper>.inner>*:last-child:before {
        display: block !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) + 0.5px) !important;
    }

    #container01.columns>.wrapper>.inner>div>.full:last-child {
        margin-bottom: calc((var(--gutters) * -0.5) + 0.5px) !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;
    }

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

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

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

    #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>span:first-child+div:before {
        display: none !important;
    }

    #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>*:before {
        border-top: solid 1px rgba(0, 0, 0, 0.149) !important;
        height: 0 !important;
        margin-left: 0 !important;
        top: auto !important;
        margin-top: calc((var(--gutters) * -0.5) - 0.5px) !important;
        left: 0 !important;
        width: 100% !important;
    }

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

    #container03.columns>.wrapper>.inner>*:first-child:before {
        display: none !important;
    }

    #container03.columns>.wrapper>.inner>*:last-child:before {
        display: block !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) + 0.5px) !important;
    }

    #container03.columns>.wrapper>.inner>div>.full:last-child {
        margin-bottom: calc((var(--gutters) * -0.5) + 0.5px) !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;
    }

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

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

    #header {
        margin-bottom: 0rem !important;
    }

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

    h1.style12,
    h2.style12,
    h3.style12,
    p.style12 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 1.125em;
        line-height: 1.25;
    }

    h1.style9:not(:first-child),
    h2.style9:not(:first-child),
    h3.style9:not(:first-child),
    p.style9:not(:first-child) {
        margin-top: 0.28125rem !important;
    }

    h1.style9:not(:last-child),
    h2.style9:not(:last-child),
    h3.style9:not(:last-child),
    p.style9:not(:last-child) {
        margin-bottom: 0.28125rem !important;
    }

    h1.style9,
    h2.style9,
    h3.style9,
    p.style9 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 1.125em;
        line-height: 1.25;
    }

    h1.style6:not(:first-child),
    h2.style6:not(:first-child),
    h3.style6:not(:first-child),
    p.style6:not(:first-child) {
        margin-top: 0rem !important;
    }

    h1.style6:not(:last-child),
    h2.style6:not(:last-child),
    h3.style6:not(:last-child),
    p.style6:not(:last-child) {
        margin-bottom: 0rem !important;
    }

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

    h1.style7:not(:first-child),
    h2.style7:not(:first-child),
    h3.style7:not(:first-child),
    p.style7:not(:first-child) {
        margin-top: 0.28125rem !important;
    }

    h1.style7:not(:last-child),
    h2.style7:not(:last-child),
    h3.style7:not(:last-child),
    p.style7:not(:last-child) {
        margin-bottom: 0.28125rem !important;
    }

    h1.style7,
    h2.style7,
    h3.style7,
    p.style7 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 1.125em;
        line-height: 1.25;
    }

    h1.style11:not(:first-child),
    h2.style11:not(:first-child),
    h3.style11:not(:first-child),
    p.style11:not(:first-child) {
        margin-top: 0rem !important;
    }

    h1.style11:not(:last-child),
    h2.style11:not(:last-child),
    h3.style11:not(:last-child),
    p.style11:not(:last-child) {
        margin-bottom: 0rem !important;
    }

    h1.style11,
    h2.style11,
    h3.style11,
    p.style11 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 1.125em;
        line-height: 1.25;
    }

    h1.style13:not(:first-child),
    h2.style13:not(:first-child),
    h3.style13:not(:first-child),
    p.style13:not(:first-child) {
        margin-top: 0.28125rem !important;
    }

    h1.style13:not(:last-child),
    h2.style13:not(:last-child),
    h3.style13:not(:last-child),
    p.style13:not(:last-child) {
        margin-bottom: 0.28125rem !important;
    }

    h1.style13,
    h2.style13,
    h3.style13,
    p.style13 {
        letter-spacing: 0rem;
        width: 100%;
        font-size: 1.125em;
        line-height: 1.25;
    }

    .image.style1:not(:first-child) {
        margin-top: 0.9375rem !important;
    }

    .image.style1:not(:last-child) {
        margin-bottom: 0.9375rem !important;
    }

    .image.style1 .frame {
        width: 20.625rem;
        height: 11.40625rem !important;
    }

    .image.style1 img {
        height: 100% !important;
        object-fit: cover;
        object-position: center;
        width: 100% !important;
    }

    hr.style1:not(:first-child) {
        margin-top: 0.625rem !important;
    }

    hr.style1:not(:last-child) {
        margin-bottom: 0.625rem !important;
    }

    hr.style1:before {
        width: 100rem;
    }
}

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

    #container02>.wrapper>.inner {
        --spacing: 0rem;
    }

    #container04>.wrapper>.inner {
        --spacing: 0rem;
    }

    #container01>.wrapper>.inner {
        --spacing: 0rem;
    }

    #container03>.wrapper>.inner {
        --spacing: 0rem;
    }

    .image.style1 .frame {
        height: 9.125rem !important;
    }
}

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

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

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

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

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

    #container02>.wrapper>.inner {
        --gutters: 6rem;
        --padding-horizontal: 1.5rem;
        --padding-vertical: 0.84375rem;
        --spacing: 0rem;
    }

    #container04>.wrapper>.inner {
        --gutters: 6rem;
        --padding-horizontal: 1.5rem;
        --padding-vertical: 0.84375rem;
        --spacing: 0rem;
    }

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

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

    h1.style12,
    h2.style12,
    h3.style12,
    p.style12 {
        font-size: 1.125em;
    }

    h1.style9,
    h2.style9,
    h3.style9,
    p.style9 {
        font-size: 1.125em;
    }

    h1.style6,
    h2.style6,
    h3.style6,
    p.style6 {
        font-size: 1.375em;
    }

    h1.style7,
    h2.style7,
    h3.style7,
    p.style7 {
        font-size: 1.125em;
    }

    h1.style11,
    h2.style11,
    h3.style11,
    p.style11 {
        font-size: 1.125em;
    }

    h1.style13,
    h2.style13,
    h3.style13,
    p.style13 {
        font-size: 1.125em;
    }

    .image.style1 .frame {
        height: 7.984375rem !important;
    }
}

.introBlackOld {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: black;
}

.introText {
    text-align: left;
    color: whitesmoke;
    font-family: "Courier New", 'DM Mono', 'nonospace';
    font-size: 20px;
    line-height: 1.25;
    font-weight: 300;
}

.loginWrapper {
    height: 100%;
    margin: 0;
}

.login {
    font-family: "DM Mono", "Courier New", monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.introBlackWrap {
    margin: 20px;
    overflow-y: auto;
}

.introBlack {
    overflow-y: auto;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(18, 18, 18);
    color: white;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    z-index: 9999;
}

.cross {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(18, 18, 18);
    color: white;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    z-index: 9999;
}

@keyframes fadeIn {
    0% {
        opacity: 0%;
        /* Fully transparent */
    }

    100% {
        opacity: 100%;
        /* Fully opaque (black) */
    }
}

@keyframes fadeOut {
    0% {
        opacity: 100%;
        /* Fully transparent */
    }

    100% {
        opacity: 0%;
        /* Fully opaque (black) */
    }
}

.fadeInEffect {
    display: block;
    animation: fadeIn 2s forwards;
}

.fadeOutEffect {
    display: block;
    animation: fadeOut 2s forwards;
}


.command-line {
    display: flex;
    align-items: center;
}

.prompt {
    text-align: left;
    font-family: "Courier New", 'DM Mono', 'nonospace';
    font-size: 20px;
    line-height: 1.25;
    font-weight: 300;
    color: #69ace4;
    /* Green color for the prompt like in terminals */
    margin-right: 5px;
}

.input-field {
    background: transparent;
    border: none;
    color: whitesmoke;
    font-family: "Courier New", 'DM Mono', 'nonospace';
    font-size: 20px;
    outline: none;
    width: 100vw
}

.input-field::placeholder {
    color: transparent;
    /* Hide the placeholder text */
}