#navbar {
    height: 70px;
    position: fixed;
    width: 100%;
    -webkit-user-select: none;
    user-select: none;
    z-index: 10
}

#navbar ul.fr {
    align-items: center;
    padding-left: 1rem
}

#navbar ul.fr:after {
    content: "";
    flex: 1
}

#navbar ul.fr>:first-child {
    flex: 1
}

#navbar svg {
    height: 4.25rem
}

#navbar label {
    cursor: pointer;
    padding: .5rem;
    width: 40px
}

#navbar label span {
    background: #fff;
    border-radius: 4px;
    height: 3px;
    margin: 5px -2px;
    transition: .3s ease
}

#navbar label span:first-child {
    width: 55%
}

#navbar label span:nth-of-type(2) {
    width: 100%
}

#navbar label span:last-child {
    width: 77.5%
}

#navbar input {
    display: none
}

#navbar input:checked~ul#nav-menu {
    transition-delay: .2s;
    visibility: visible
}

#navbar input:checked+label span:first-child {
    transform: rotate(45deg) translate(8px);
    transform-origin: bottom;
    width: 50%
}

#navbar input:checked+label span:nth-of-type(2) {
    transform: translate(3px) rotate(-45deg);
    transform-origin: top;
    width: 94%
}

#navbar input:checked+label span:last-child {
    transform: translate(17px, -8.5px) rotate(45deg);
    transform-origin: bottom;
    width: 50%
}

#nav-menu {
    font-size: 18px;
    left: 0;
    line-height: 1.6;
    margin-top: 5px;
    padding: 12px 32px 0;
    position: fixed;
    visibility: hidden;
    width: 150px
}

#nav-menu li {
    padding: 9px
}

#nav-menu a {
    color: #f2f2f2;
    padding: 6px;
    opacity: .95;
    width: fit-content
}

@media (orientation: portrait) {
    #navbar {
        height: min-content;
        position: fixed
    }

    #navbar ul {
        padding: 0 10px
    }

    #navbar img {
        height: 65px
    }

    #nav-menu {
        margin-top: 2.3px
    }
}

h1,
h2,
h3,
h4 {
    /* font-family: League Spartan, sans-serif; */
    font-weight: 500;
    margin: 0
}

h5,
h6 {
    font-weight: 500;
    margin: 0
}

h1 {
    font-size: 71px;
    line-height: 84px
}

h2 {
    font-size: 42px;
    line-height: 52px
}

h3 {
    font-size: 32px;
    line-height: 40px
}

h4 {
    font-size: 28px;
    line-height: 36px
}

h5 {
    font-size: 24px;
    line-height: 32px
}

h6 {
    font-size: 18px;
    line-height: 24px
}

/* @font-face {
    font-family: Inter;
    font-weight: 400;
    font-display: swap;
    src: url(/fonts/inter.woff2) format("woff2")
}

@font-face {
    font-family: League Spartan;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(/fonts/spartan500.woff2) format("woff2")
}

@font-face {
    font-family: League Spartan;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(/fonts/spartan600.woff2) format("woff2")
} */

footer {
    background: #030303;
    color: #f2f2f2;
    padding: 2rem 5rem
}

footer nav {
    border-bottom: solid 2px #313131;
    line-height: 2;
    justify-content: space-around;
    padding: 0 1rem 2rem
}

footer section {
    padding: 1.5rem;
    width: 15rem
}

footer h4 a {
    font-size: 38px;
    line-height: 1.9
}

footer a {
    color: #f2f2f2;
    font-size: 17px;
    opacity: .9
}

footer a:hover {
    opacity: 1
}

footer .footer-modules {
    padding-left: 16px
}

@media (orientation: portrait) {
    footer {
        padding: 0
    }

    footer nav {
        border-bottom: none;
        padding: 1rem 20vw
    }

    footer section {
        min-width: min-content;
        padding: 4vh 0
    }

    footer h5 a {
        font-size: 2.5rem;
        margin-bottom: 5px
    }

    footer ul {
        line-height: 2
    }

    footer a {
        font-size: 1.2rem
    }
}

body {
    accent-color: #cc0000;
    background-color: #fff;
    color: #0c0c0c;
    font: 400 16px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility
}

a {
    color: #1f00ce;
    font-size: 16px;
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

ul.list-round {
    list-style: disc;
    margin: 0 36px
}

ul.list-line {
    list-style: circle;
    margin: 0 36px
}

.content {
    padding: 7rem 3.5vw 2rem;
    width: calc(100% - 9rem)
}

.fc {
    display: flex;
    flex-flow: column wrap
}

.fr {
    display: flex;
    flex-flow: row wrap
}

.blur-bg {
    background-color: #030303e6;
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px)
}

.txt-vert {
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl
}

.italic {
    font-style: italic
}

.no-break {
    white-space: nowrap
}

:focus-visible {
    margin: .1rem;
    outline: 2px solid #cc0000
}

@media (orientation: portrait) {
    .desktop {
        display: none
    }

    .content {
        padding: 4rem 1.25rem 1rem
    }

    .list-round,
    .list-line {
        margin: 0 1.5rem
    }
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #030303
}

::-webkit-scrollbar-thumb {
    background: #f2f2f2
}

::-webkit-scrollbar-thumb:hover {
    background: #fff
}

:root {
    scrollbar-color: #f2f2f2 #030303;
    scrollbar-width: thin
}