body,
html {
    margin: 0;
    padding: 0
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    --color-bg: #252525;
    --color-bg-a25: rgba(30, 29, 26, 0.25);
    --color-bg-a50: rgba(30, 29, 26, 0.5);
    --color-bg-a80: rgba(30, 29, 26, 0.8);
    --color-text: ivory;
    --color-text-a10: hsla(60, 93%, 94%, 0.1);
    --color-text-a20: hsla(60, 93%, 94%, 0.2);
    --color-text-a50: hsla(60, 93%, 94%, 0.5);
    --color-text-a75: hsla(0, 0%, 100%, 0.75);
    --color-shadow: rgba(54, 20, 0, 0.2);
    --color-accent-1: #fabe12;
    --color-accent-1-a75: rgba(250, 190, 18, 0.75);
    --color-accent-1-a50: rgba(250, 190, 18, 0.5);
    --color-accent-1-a10: rgba(250, 190, 18, 0.1);
    --color-accent-1-s90: #be9115;
    --color-accent-2: #007892;
    --color-accent-2-a10: rgba(0, 120, 146, 0.1);
    --f1: "Rubik";
    --f2: "Montserrat";
    --fs08: 0.8rem;
    --fs1: 1rem;
    --fs2: 1.2rem;
    --fs3: 1.5rem;
    --fs4: 1.75rem;
    --fs5: 2rem;
    --q: 1rem;
    --qh: .5rem;
    --q2: calc(var(--q)*2);
    --q3: calc(var(--q)*3);
    --q4: calc(var(--q)*4);
    --q5: calc(var(--q)*5);
    --q6: calc(var(--q)*6);
    --q7: calc(var(--q)*7);
    --q8: calc(var(--q)*8);
    --q9: calc(var(--q)*9);
    --q10: calc(var(--q)*10);
    --q11: calc(var(--q)*11);
    --q12: calc(var(--q)*12);
    --q13: calc(var(--q)*13);
    --padding-sides: var(--q4);
    --padding-sides-half: calc(var(--padding-sides)/2);
    --blur-radius: 10px;
    color: var(--color-text);
    font-family: var(--f1);
    font-size: 16px
}

body.rdr {
    background-color: var(--color-bg);
    background: url(assets/video/bg-gif.gif);
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

body.pattern {
    background-color: var(--color-bg);
    background-size: 15%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--f2);
    font-weight: 300;
    line-height: 1
}

h1 {
    font-size: var(--fs5)
}

::-moz-selection {
    background-color: var(--color-accent-1-a75)
}

::selection {
    background-color: var(--color-accent-1-a75)
}

a {
    color: currentColor;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease
}

a:hover {
    color: var(--color-text);
    background-color: var(--color-accent-1);
    -webkit-box-shadow: 0 0 0 4px var(--color-accent-1);
    box-shadow: 0 0 0 4px var(--color-accent-1);
    -webkit-transition: none;
    -o-transition: none;
    transition: none
}

a.unstyled {
    text-decoration: none
}

a.unstyled:hover {
    color: unset;
    background-color: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset
}

.disable-scroll {
    overflow: hidden
}

.icon {
    height: var(--q);
    width: var(--q);
    fill: currentColor;
    opacity: 1;
    vertical-align: center;
    margin-right: calc(var(--q)/4)
}

.material-icons-outlined {
    font-size: 18px
}

.spacer {
    padding-left: var(--padding-sides-half);
    padding-right: var(--padding-sides-half)
}

hr {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--color-text-a10)
}

.separator,
.separator-header {
    border-top: 2px solid var(--color-text-a10)
}

.separator-header {
    padding-top: var(--q2)
}

.padding-bottom-col-q {
    padding-bottom: var(--q)
}

.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto
}

.container-fluid {
    padding-right: 2rem;
    padding-left: 2rem
}

.row {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -.5rem;
    margin-left: -.5rem
}

.row,
.row.reverse {
    -webkit-box-orient: horizontal
}

.row.reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.col.reverse,
.row.reverse {
    -webkit-box-direction: reverse
}

.col.reverse {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem
}

.col-xs {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%
}

.col-xs-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%
}

.col-xs-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%
}

.col-xs-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%
}

.col-xs-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%
}

.col-xs-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%
}

.col-xs-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%
}

.col-xs-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%
}

.col-xs-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%
}

.col-xs-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%
}

.col-xs-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%
}

.col-xs-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%
}

.col-xs-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%
}

.col-xs-offset-0 {
    margin-left: 0
}

.col-xs-offset-1 {
    margin-left: 8.33333333%
}

.col-xs-offset-2 {
    margin-left: 16.66666667%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-4 {
    margin-left: 33.33333333%
}

.col-xs-offset-5 {
    margin-left: 41.66666667%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-7 {
    margin-left: 58.33333333%
}

.col-xs-offset-8 {
    margin-left: 66.66666667%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-10 {
    margin-left: 83.33333333%
}

.col-xs-offset-11 {
    margin-left: 91.66666667%
}

.start-xs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start
}

.center-xs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.end-xs {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end
}

.top-xs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.middle-xs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.bottom-xs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.between-xs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.first-xs {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1
}

.last-xs {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

@media only screen and (min-width:48em) {
    .container {
        width: 49rem
    }

    .col-sm,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-offset-0,
    .col-sm-offset-1,
    .col-sm-offset-2,
    .col-sm-offset-3,
    .col-sm-offset-4,
    .col-sm-offset-5,
    .col-sm-offset-6,
    .col-sm-offset-7,
    .col-sm-offset-8,
    .col-sm-offset-9,
    .col-sm-offset-10,
    .col-sm-offset-11,
    .col-sm-offset-12 {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: .5rem;
        padding-left: .5rem
    }

    .col-sm {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%
    }

    .col-sm-1 {
        -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
        max-width: 8.33333333%
    }

    .col-sm-2 {
        -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
        max-width: 16.66666667%
    }

    .col-sm-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }

    .col-sm-4 {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%
    }

    .col-sm-5 {
        -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
        max-width: 41.66666667%
    }

    .col-sm-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }

    .col-sm-7 {
        -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
        max-width: 58.33333333%
    }

    .col-sm-8 {
        -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
        max-width: 66.66666667%
    }

    .col-sm-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }

    .col-sm-10 {
        -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
        max-width: 83.33333333%
    }

    .col-sm-11 {
        -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
        max-width: 91.66666667%
    }

    .col-sm-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .start-sm {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start
    }

    .center-sm {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center
    }

    .end-sm {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: end
    }

    .top-sm {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .middle-sm {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .bottom-sm {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .around-sm {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .between-sm {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .first-sm {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .last-sm {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}

@media only screen and (min-width:64em) {
    .container {
        width: 65rem
    }

    .col-md,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-offset-0,
    .col-md-offset-1,
    .col-md-offset-2,
    .col-md-offset-3,
    .col-md-offset-4,
    .col-md-offset-5,
    .col-md-offset-6,
    .col-md-offset-7,
    .col-md-offset-8,
    .col-md-offset-9,
    .col-md-offset-10,
    .col-md-offset-11,
    .col-md-offset-12 {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: .5rem;
        padding-left: .5rem
    }

    .col-md {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%
    }

    .col-md-1 {
        -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
        max-width: 8.33333333%
    }

    .col-md-2 {
        -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
        max-width: 16.66666667%
    }

    .col-md-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }

    .col-md-4 {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%
    }

    .col-md-5 {
        -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
        max-width: 41.66666667%
    }

    .col-md-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }

    .col-md-7 {
        -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
        max-width: 58.33333333%
    }

    .col-md-8 {
        -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
        max-width: 66.66666667%
    }

    .col-md-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }

    .col-md-10 {
        -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
        max-width: 83.33333333%
    }

    .col-md-11 {
        -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
        max-width: 91.66666667%
    }

    .col-md-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }

    .col-md-offset-0 {
        margin-left: 0
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .start-md {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start
    }

    .center-md {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center
    }

    .end-md {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: end
    }

    .top-md {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .middle-md {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .bottom-md {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .around-md {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .between-md {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .first-md {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .last-md {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}

@media only screen and (min-width:75em) {
    .container {
        width: 76rem
    }

    .col-lg,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-offset-0,
    .col-lg-offset-1,
    .col-lg-offset-2,
    .col-lg-offset-3,
    .col-lg-offset-4,
    .col-lg-offset-5,
    .col-lg-offset-6,
    .col-lg-offset-7,
    .col-lg-offset-8,
    .col-lg-offset-9,
    .col-lg-offset-10,
    .col-lg-offset-11,
    .col-lg-offset-12 {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: .5rem;
        padding-left: .5rem
    }

    .col-lg {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%
    }

    .col-lg-1 {
        -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
        max-width: 8.33333333%
    }

    .col-lg-2 {
        -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
        max-width: 16.66666667%
    }

    .col-lg-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }

    .col-lg-4 {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%
    }

    .col-lg-5 {
        -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
        max-width: 41.66666667%
    }

    .col-lg-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }

    .col-lg-7 {
        -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
        max-width: 58.33333333%
    }

    .col-lg-8 {
        -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
        max-width: 66.66666667%
    }

    .col-lg-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }

    .col-lg-10 {
        -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
        max-width: 83.33333333%
    }

    .col-lg-11 {
        -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
        max-width: 91.66666667%
    }

    .col-lg-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .start-lg {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start
    }

    .center-lg {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center
    }

    .end-lg {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: end
    }

    .top-lg {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .middle-lg {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .bottom-lg {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .around-lg {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .between-lg {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .first-lg {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .last-lg {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}

.flex-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.flex-center,
.flex-center__x {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.flex-center__y {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.flex-column__lg,
.flex-column__md,
.flex-column__sm {
    display: none !important
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media (max-width:48em) {
    .flex-column__xs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media (min-width:48em) and (max-width:64em) {
    .flex-column__sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media (min-width:64em) and (max-width:75em) {
    .flex-column__md {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media (min-width:75em) {
    .flex-column__lg {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media (max-width:48em) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width:48em) and (max-width:64em) {
    .hidden-sm {
        display: none !important
    }
}

@media (min-width:64em) and (max-width:75em) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width:75em) {
    .hidden-lg {
        display: none !important
    }
}

.visible-xs-block {
    display: none !important
}

@media (max-width:48em) {
    .visible-xs-block {
        display: block !important
    }
}

.visible-sm-block {
    display: none !important
}

@media (min-width:48em) and (max-width:64em) {
    .visible-sm-block {
        display: block !important
    }
}

.visible-md-block {
    display: none !important
}

@media (min-width:64em) and (max-width:75em) {
    .visible-md-block {
        display: block !important
    }
}

.visible-lg-block {
    display: none !important
}

@media (min-width:75em) {
    .visible-lg-block {
        display: block !important
    }
}

.visible-xs-inline-block {
    display: none !important
}

@media (max-width:48em) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

.visible-sm-inline-block {
    display: none !important
}

@media (min-width:48em) and (max-width:64em) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

.visible-md-inline-block {
    display: none !important
}

@media (min-width:64em) and (max-width:75em) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

.visible-lg-inline-block {
    display: none !important
}

@media (min-width:75em) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

.visible-xs-inline {
    display: none !important
}

@media (max-width:48em) {
    .visible-xs-inline {
        display: inline !important
    }
}

.visible-sm-inline {
    display: none !important
}

@media (min-width:48em) and (max-width:64em) {
    .visible-sm-inline {
        display: inline !important
    }
}

.visible-md-inline {
    display: none !important
}

@media (min-width:64em) and (max-width:75em) {
    .visible-md-inline {
        display: inline !important
    }
}

.visible-lg-inline {
    display: none !important
}

@media (min-width:75em) {
    .visible-lg-inline {
        display: inline !important
    }
}

.visible-xs {
    display: none !important
}

@media (max-width:48em) {
    .visible-xs {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

.visible-sm {
    display: none !important
}

@media (min-width:48em) and (max-width:64em) {
    .visible-sm {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

.visible-md {
    display: none !important
}

@media (min-width:64em) and (max-width:75em) {
    .visible-md {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

.visible-lg {
    display: none !important
}

@media (min-width:75em) {
    .visible-lg {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

header {
    margin: 0;
    padding: var(--q2) 0 0 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 2
}

header .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
    text-decoration: none;
    color: var(--color-text);
    font-size: var(--fs2);
    font-weight: 300
}

header .logo:hover {
    color: var(--color-accent-1);
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0)
}

header .logo-img {
    display: block;
    width: var(--q2);
    height: var(--q2);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    fill: currentColor
}

header .logo .logo-title {
    margin-left: var(--q);
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

header .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-right: calc(var(--q)*-1)
}

header .links a {
    display: block;
    padding: var(--qh) var(--q);
    margin-left: var(--q);
    background-color: var(--color-text-a10);
    text-decoration: none
}

header .links a:hover {
    background-color: var(--color-accent-1);
    -webkit-box-shadow: none;
    box-shadow: none
}

header .links a.active {
    -webkit-box-shadow: 0 -2px 0 var(--color-accent-1) inset;
    box-shadow: 0 -2px 0 var(--color-accent-1) inset
}

header .burger-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.burger-links .material-icons-outlined,
header .burger-toggle .material-icons-outlined {
    font-size: var(--fs4)
}

.burger-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--color-bg-a50);
    -webkit-backdrop-filter: blur(var(--blur-radius));
    backdrop-filter: blur(var(--blur-radius));
    padding: var(--padding-sides-half);
    z-index: 10;
    -webkit-transform: translateX(100vw);
    -ms-transform: translateX(100vw);
    transform: translateX(100vw);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.burger-links.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.burger-links .links {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 0
}

.burger-links .links a {
    display: block;
    padding: var(--q);
    margin-bottom: var(--q);
    margin-right: var(--q2);
    background-color: var(--color-text-a10);
    text-decoration: none
}

.burger-links .links a:hover {
    background-color: var(--color-accent-1);
    -webkit-box-shadow: none;
    box-shadow: none
}

.burger-links .close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: var(--q2);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@supports not ((-webkit-backdrop-filter:blur) or (backdrop-filter:blur)) {
    .burger-links {
        background-color: var(--color-bg);
        background-image: url(e6bab6e0eb003ff2ee71bc8e4330cff1.png)
    }
}

.btn {
    display: inline-block;
    padding: var(--qh) calc(var(--qh)/.68);
    color: var(--color-text);
    background-color: var(--color-bg-a25);
    background-image: url(e6bab6e0eb003ff2ee71bc8e4330cff1.png);
    background-size: 50%;
    font-size: var(--fs08);
    font-weight: 300;
    font-family: var(--f1);
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: 2px solid var(--color-text-a75);
    -webkit-backdrop-filter: blur(var(--blur-radius));
    backdrop-filter: blur(var(--blur-radius));
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 0;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.btn,
.btn:hover {
    -webkit-box-shadow: 0 0 4px 0 var(--color-shadow);
    box-shadow: 0 0 4px 0 var(--color-shadow)
}

.btn:hover {
    color: var(--color-bg);
    background: var(--color-text);
    -webkit-transition: none;
    -o-transition: none;
    transition: none
}

.btn .icon {
    width: var(--fs08);
    height: var(--fs08)
}

.btn.primary {
    color: var(--color-text);
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid var(--color-accent-1);
    -webkit-box-shadow: 0 0 10px 0 var(--color-accent-1-a50);
    box-shadow: 0 0 10px 0 var(--color-accent-1-a50)
}

.btn.primary:hover {
    background-color: var(--color-accent-1-s90)
}

.btn.block {
    width: 100%
}

@-webkit-keyframes bloop {
    0% {
        -webkit-box-shadow: 0 0 30px 3px var(--color-accent-1-a50), 0 0 0 var(--qh) var(--color-accent-1-a50);
        box-shadow: 0 0 30px 3px var(--color-accent-1-a50), 0 0 0 var(--qh) var(--color-accent-1-a50)
    }

    to {
        -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0);
        box-shadow: 0 0 2px rgba(0, 0, 0, 0)
    }
}

@keyframes bloop {
    0% {
        -webkit-box-shadow: 0 0 30px 3px var(--color-accent-1-a50), 0 0 0 var(--qh) var(--color-accent-1-a50);
        box-shadow: 0 0 30px 3px var(--color-accent-1-a50), 0 0 0 var(--qh) var(--color-accent-1-a50)
    }

    to {
        -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0);
        box-shadow: 0 0 2px rgba(0, 0, 0, 0)
    }
}

section.faq {
    padding: var(--q2) 0 var(--q3) 0
}

section.faq .target {
    -webkit-animation-name: bloop;
    animation-name: bloop;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s
}

section.faq h3 {
    margin-top: var(--q2);
    margin-bottom: var(--qh)
}

section.faq h3 a {
    color: var(--color-text-a50)
}

section.faq h3 a:hover {
    color: var(--color-text)
}

section.faq p {
    margin: var(--qh) 0
}

footer {
    padding-top: var(--q2);
    color: var(--color-text)
}

footer .righty {
    text-align: right
}

footer .centered {
    text-align: center
}

footer .links {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--q2)
}

footer .links,
footer .links li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

footer .links a {
    padding: var(--qh) var(--q);
    margin: var(--qh);
    -webkit-backdrop-filter: blur(var(--blur-radius));
    backdrop-filter: blur(var(--blur-radius));
    background-color: var(--color-text-a10);
    text-decoration: none
}

footer .links a:hover {
    background-color: var(--color-accent-1);
    -webkit-box-shadow: none;
    box-shadow: none
}

footer .copyright {
    text-align: center
}

.legal-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1em;
    margin-bottom: 1em
}

.legal-links .footer-bullet {
    display: none
}

@media only screen and (min-width:64em) {
    .legal-links .footer-bullet {
        display: block
    }

    .legal-links {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: normal;
        -ms-flex-align: normal;
        align-items: normal
    }
}

.cta-banner {
    display: none;
    --height: 50px;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: var(--height);
    background-color: #e33131;
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 1px
}

.cta-banner.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.cta-banner .text {
    padding: 0 var(--height)
}

.cta-banner strong {
    font-weight: 400
}

.cta-banner .close {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    aspect-ratio: 1;
    color: currentColor;
    cursor: pointer;
    background: none;
    border: none
}

section.hero {
    padding: var(--q7) 0 0 0
}

section.hero .lead {
    margin: 0;
    color: var(--color-text);
    font-family: var(--f2);
    font-size: var(--fs3)
}

@media only screen and (min-width:48em) {
    section.hero .lead {
        font-size: var(--fs5)
    }
}

@-webkit-keyframes bganim {
    0% {
        background-position: 0 0
    }

    50% {
        background-position: 500px -500px
    }

    to {
        background-position: 1000px -1000px
    }
}

@keyframes bganim {
    0% {
        background-position: 0 0
    }

    50% {
        background-position: 500px -500px
    }

    to {
        background-position: 1000px -1000px
    }
}

.bg-holder {
    position: relative;
    background-image: url(6c42233ace2e0af307829802ff92ebbf.jpg);
    background-size: cover;
    padding-bottom: var(--q2)
}

.bg-holder .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(7b9c1e20bc58fc6b9168a98bce3139bf.png);
    background-size: 100px;
    background-repeat: repeat-x;
    background-position: bottom;
    z-index: 0
}

section.hero .cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

section.hero .cta #server-jump {
    padding: var(--q) var(--q2);
    font-weight: 300;
    font-family: var(--f1);
    font-size: var(--fs3);
    cursor: pointer;
    color: var(--color-text);
    background-color: var(--color-accent-1-a10);
    background-image: url(5acaf3ca7e527ae76bc22212bbe7532f.png);
    background-size: 50%;
    -webkit-animation: bganim 40s linear 0s infinite;
    animation: bganim 40s linear 0s infinite;
    border: 2px solid var(--color-accent-1);
    -webkit-box-shadow: 0 0 10px 0 var(--color-accent-1-a50);
    box-shadow: 0 0 10px 0 var(--color-accent-1-a50);
    -webkit-backdrop-filter: blur(var(--blur-radius));
    backdrop-filter: blur(var(--blur-radius));
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background .2s ease;
    -o-transition: background .2s ease;
    transition: background .2s ease
}

section.hero .cta #server-jump:hover {
    background-color: var(--color-accent-1-s90);
    -webkit-transition: none;
    -o-transition: none;
    transition: none
}

section.hero .cta #server-jump .description {
    display: block;
    margin-top: var(--qh);
    font-size: var(--fs1);
    font-family: var(--f1);
    opacity: .75
}

section.hero .cta .players {
    margin-bottom: var(--q2);
    text-align: center
}

section.hero .cta .players .current-players {
    font-weight: 700
}

section.hero .cta .server {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: var(--q2);
    padding: 0
}

section.hero .cta .server .or {
    color: var(--color-text-a75)
}

.terms {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--q2);
    background-color: var(--color-bg-a50);
    -webkit-backdrop-filter: blur(var(--blur-radius));
    backdrop-filter: blur(var(--blur-radius));
    z-index: 10
}

@-moz-document url-prefix() {
    .terms {
        background-color: var(--color-bg)
    }
}

.terms .col-xs-12,
.terms .container,
.terms .row,
.terms .spacer {
    height: 100%
}

.terms .terms-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 100%
}

.terms .terms-wrapper h1 {
    margin-top: 0
}

.terms iframe {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-shadow: 0 1rem 5rem var(--color-shadow);
    box-shadow: 0 1rem 5rem var(--color-shadow)
}

.terms .buttons {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: var(--q)
}

.terms .buttons,
section.hero .thanks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

section.hero .thanks {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: var(--q7)
}

section.hero .thanks,
section.hero .thanks .message {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column
}

section.hero .thanks .message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

section.hero .thanks .message h1 .hl {
    color: var(--color-accent-1)
}

section.hero .thanks p {
    text-align: center
}

section.hero .thanks .snaily-happy {
    width: 150px;
    height: 150px;
    background-image: url(b6ddac1ad39d4a8d17dbd008ee198d04.png);
    background-size: cover
}

section.hero .seller {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

section.hero .seller.active {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
    pointer-events: all
}

.terms {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.terms.active {
    opacity: 1;
    pointer-events: all
}

section.hero .thanks {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8)
}

section.hero .thanks.active {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    pointer-events: all;
    -webkit-transition: .4s cubic-bezier(.78, .04, .26, 1.39);
    -o-transition: .4s cubic-bezier(.78, .04, .26, 1.39);
    transition: .4s cubic-bezier(.78, .04, .26, 1.39);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform
}

section.hero {
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    padding: var(--q5) 0 var(--q5) 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 2
}

section.hero .seller {
    width: 100%
}

section.hero .cta #server-jump {
    text-decoration: none;
    text-align: center
}

.langs {
    margin-bottom: var(--q)
}

.lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: calc(100% - var(--q)*2);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: var(--q) 0;
    padding: var(--q);
    color: var(--color-text);
    background-color: var(--color-text-a10);
    -webkit-backdrop-filter: blur(var(--blur-radius));
    backdrop-filter: blur(var(--blur-radius));
    text-decoration: none;
    background-image: url(216aaf90d7112a107d387826cb1d6f9a.png);
    -webkit-box-shadow: 0 2px 0 var(--color-text-a10) inset, 0 -2px 0 var(--color-text-a10) inset;
    box-shadow: 0 2px 0 var(--color-text-a10) inset, 0 -2px 0 var(--color-text-a10) inset
}

.lang,
.lang:hover {
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.lang:hover {
    background-color: var(--color-text-a20);
    -webkit-transform: translateY(calc(var(--qh)*-1));
    -ms-transform: translateY(calc(var(--qh)*-1));
    transform: translateY(calc(var(--qh)*-1));
    -webkit-box-shadow: 0 0 0 2px var(--color-accent-1) inset;
    box-shadow: 0 0 0 2px var(--color-accent-1) inset
}

.lang .logo {
    margin-right: var(--q);
    padding: var(--q);
    background-color: var(--color-text-a10)
}

.lang .logo svg {
    width: var(--q4);
    height: var(--q4)
}

.lang .auxiliary {
    text-align: left
}

.lang .auxiliary h2 {
    margin: 0 0 calc(var(--q)/2) 0;
    padding: 0
}

.lang.lua {
    --bg: rgba(25, 0, 128, 0.1);
    --shadow: rgba(25, 0, 128, 0.05)
}

.lang.cs {
    --bg: rgba(104, 33, 122, 0.1);
    --shadow: rgba(104, 33, 122, 0.1)
}

.lang.js {
    --bg: rgba(241, 219, 79, 0.2);
    --shadow: rgba(241, 219, 79, 0.05)
}

.server-features {
    padding-bottom: var(--q2)
}

.server-features .feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: var(--q2)
}

.server-features .feature .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: var(--q);
    margin-right: var(--q);
    border: 2px solid var(--color-text-a10);
    color: var(--color-text-a75)
}

.server-features .feature .text {
    padding-right: var(--q);
    font-size: var(--fs2);
    line-height: 1.1
}

section.server-docs {
    padding: var(--q2) 0
}

section.server-docs .docs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    margin-bottom: var(--q);
    padding: var(--q) 0;
    border-top: 2px solid var(--color-text-a10)
}

section.server-docs .docs .icn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: var(--qh);
    margin-right: var(--q);
    border: 2px solid var(--color-text-a10)
}

section.server-docs .docs .icn svg {
    display: block;
    width: var(--q3);
    height: var(--q3)
}

section.server-docs .docs .content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

section.server-docs .docs .content .title {
    margin-top: 0
}

section.server-docs .docs .content .links {
    list-style: none;
    padding-left: 0
}

section.server-docs .docs .content .links li a {
    display: block;
    margin-bottom: var(--qh);
    padding: var(--qh) var(--q);
    text-decoration: none;
    -webkit-backdrop-filter: blur(var(--blur-radius));
    backdrop-filter: blur(var(--blur-radius));
    background-color: var(--color-text-a10)
}

section.server-docs .docs .content .links li a:hover {
    background-color: var(--color-accent-1);
    -webkit-box-shadow: none;
    box-shadow: none
}

section.impressum {
    padding: 0 0 var(--q2) 0
}

section.monetization-partners {
    padding: var(--q) 0 var(--q2) 0
}

section.impressum p,
section.monetization-partners p {
    color: var(--color-text-a75)
}

section.impressum .heading {
    margin-top: var(--q2);
    margin-bottom: var(--q)
}

section.impressum .partner {
    display: block;
    padding-bottom: var(--q)
}

section.impressum .partner .icon {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border: 2px solid var(--color-text-a10);
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: 50%;
    background-color: var(--color-bg);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

section.impressum .partner:hover .icon {
    background-size: 100%;
    background-color: #1c202e
}

section.impressum .partner .content {
    width: 100%
}

section.impressum .partner .content .title {
    margin-top: var(--q);
    margin-bottom: 0;
    text-align: center;
    font-family: Rubik;
    font-weight: 300;
    font-size: var(--fs2)
}

section.impressum .partner .content .title a {
    text-decoration: none
}

section.impressum .partner.gportal .icon {
    background-image: url(0c4cc128e0ef13c7d39a8657a98a4213.png)
}

section.impressum .partner.nodecraft .icon {
    background-image: url(3d23da6d4a8c84096ea2c1244472ac86.png)
}

section.impressum .partner.pockethost .icon {
    background-image: url(db73611ff77fe10377fd7594355fe2b0.png)
}

section.impressum .partner.zap .icon {
    background-image: url(4e806014ad5134ab086e3351b728d5bd.png)
}

section.monetization-partners .partner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: var(--q);
    margin-bottom: var(--q)
}

section.monetization-partners .partner .icon {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border: 2px solid var(--color-text-a10);
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: 50%;
    background-color: var(--color-bg);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

section.monetization-partners .partner:hover .icon {
    background-size: 100%;
    background-color: #1c202e
}

section.monetization-partners .partner .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    padding-left: var(--q)
}

section.monetization-partners .partner .content .title {
    margin-top: 0;
    margin-bottom: 0;
    font-family: Rubik;
    font-weight: 300;
    font-size: var(--fs3)
}

section.monetization-partners .partner .content .title a {
    text-decoration: none
}

section.monetization-partners .partner.tebex .icon {
    background-image: url(a8b4ab5c3d243934f97a0e5064e38dc5.png)
}

section.portal {
    padding: var(--q3) 0 var(--q4) 0;
    background-color: var(--color-accent-2-a10)
}

section.portal .tier {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100%;
    margin-top: var(--q);
    border: 2px solid var(--tier-color);
    background-color: var(--color-text-a10)
}

section.portal .tier .title {
    font-family: var(--f2)
}

section.portal .tier .cost,
section.portal .tier .title {
    text-align: center;
    font-size: var(--fs2);
    padding: var(--q);
    background-color: var(--tier-color)
}

section.portal .tier .cost {
    padding-top: 0;
    font-weight: 700;
    letter-spacing: 1px
}

section.portal .tier .capacity {
    margin-top: var(--q2);
    padding: var(--q);
    text-align: center
}

section.portal .tier .capacity strong {
    letter-spacing: 1px
}

section.portal .tier .join {
    padding: var(--q2)
}

section.portal .tier .join .btn {
    width: 100%;
    text-align: center
}

section.portal .tier .perks {
    list-style: circle;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

section.portal .tier .perks li {
    padding-bottom: var(--q)
}

section.portal .tier.ag {
    --tier-color: hsla(0, 0%, 51.4%, 0.25)
}

section.portal .tier.au {
    --tier-color: rgba(255, 217, 0, 0.25)
}

section.portal .tier.pt {
    --tier-color: var(--color-accent-1);
    -webkit-box-shadow: 0 0 10px 0 var(--color-accent-1-a50);
    box-shadow: 0 0 10px 0 var(--color-accent-1-a50);
    background-image: url(5acaf3ca7e527ae76bc22212bbe7532f.png);
    background-size: 250px
}

section.portal .contributor-program {
    padding-top: var(--q2)
}

section.portal .contributor-program h3 {
    margin-top: var(--q2)
}

section.portal .contributor-program .pricing-spacer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

section.portal .contributor-program .pricing-spacer:after,
section.portal .contributor-program .pricing-spacer:before {
    content: "";
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-bottom: 2px solid var(--color-text-a10)
}

section.portal .contributor-program .pricing-spacer:before {
    margin-right: var(--q)
}

section.portal .contributor-program .pricing-spacer:after {
    margin-left: var(--q)
}
/* Montserrat 500 */
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat-v25-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  /* Rubik 300, 400, 300italic, 400italic */
  @font-face {
    font-family: 'Rubik';
    src: url('/fonts/rubik-v28-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  /* weitere Rubik Varianten hier ergänzen */
  
  /* Roboto 100–900 */
  @font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto-v30-latin-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  /* Material Icons Outlined */
  @font-face {
    font-family: 'Material Icons Outlined';
    src: url('/fonts/material-icons-outlined.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
  }