:root {
    font-size: 10px;
    text-size-adjust: 100%;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@font-face {
    font-family: JB;
    src: url("/assets/fonts/JB-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: JB;
    src: url("/assets/fonts/JB-500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: JB;
    src: url("/assets/fonts/JB-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
* {
    font-family: inherit;
    padding: 0;
    margin: 0;
    letter-spacing: -0.08em;
    line-height: 100%;
    font-size: var(--font-size);
    box-sizing: border-box;
}
ul,
ol {
    list-style: none;
}
a {
    cursor: pointer;
    color: #0049ff;
}
a:hover {
    text-decoration: none;
}
body {
    font-family: JB, sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex-grow: 1;
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}
:root {
    --font-size: 1.6rem;
}
* {
    letter-spacing: -0.06em;
}
@media (min-width: 1001px) {
    :root {
        --max-width: 130rem;
    }
}
@media screen and (min-width: 1001px) and (max-width: 1439px) {
    :root {
        font-size: 0.6944444444vw !important;
    }
}
@media (min-width: 744px) and (max-width: 1000px) {
    :root {
        --max-width: 62.8rem;
        font-size: 1.3458950202vw;
    }
}
@media (max-width: 743px) {
    :root {
        --max-width: 30.6rem;
        font-size: 2.6666666667vw;
    }
}
.nav {
    background: #000;
}
.nav ul {
    height: 4.2rem;
    margin: 0 auto;
    max-width: var(--max-width);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4.5rem;
}
.nav a {
    color: #fff;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.2rem;
    text-underline-offset: 0.3rem;
}
.nav img {
    width: 2.2rem;
}
@media (max-width: 743px) {
    .nav {
        display: none;
    }
}
header {
    margin: 0 auto;
    max-width: var(--max-width);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
header input,
header label,
header section {
    display: none;
}
header section {
    z-index: 10;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    padding: 2.9rem 2.9rem 0;
    transition: 0.1s;
    display: flex;
}
header section > div {
    height: 100%;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: none;
}
header section a {
    color: #fff;
    text-underline-offset: 0.3rem;
}
header input:checked ~ section {
    right: 0;
}
header input:checked ~ label .open {
    display: none;
}
header input:checked ~ label .close {
    display: block;
    width: 2.4rem;
}
@media (min-width: 1001px) {
    header {
        height: 15rem;
    }
    header section {
        display: none;
    }
    header .logo {
        width: 31.7rem;
    }
}
@media (min-width: 744px) and (max-width: 1000px) {
    header {
        height: 14.5rem;
    }
    header section {
        display: none;
    }
    header .logo {
        width: 28.2rem;
    }
}
@media (max-width: 743px) {
    header {
        height: 8.4rem;
    }
    header .logo {
        width: 18.4rem;
    }
    header section .logo {
        margin-bottom: 7.5rem;
    }
    header label {
        cursor: pointer;
        display: block;
        z-index: 11;
    }
    header label .open {
        width: 2.7rem;
    }
    header label .close {
        display: none;
    }
}
body:has(#menu-toggle:checked) {
    overflow: hidden;
    height: 100vh;
}
hr {
    border-bottom: 3px solid transparent;
    border-image-source: repeating-linear-gradient(to right, #ff7a00 0, #ff7a00 4px, transparent 4px, transparent 12px);
    border-image-slice: 1;
}
@media (max-width: 743px) {
    hr {
        border-bottom: 2px solid transparent;
        border-image-source: repeating-linear-gradient(to right, #ff7a00 0, #ff7a00 2px, transparent 2px, transparent 6px);
    }
}
footer {
    width: 100%;
    min-width: 100%;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
@media (min-width: 1001px) {
    footer {
        height: 12rem;
        font-size: 3rem;
    }
}
@media (min-width: 744px) and (max-width: 1000px) {
    footer {
        height: 10.2rem;
        font-size: 2.4rem;
    }
}
@media (max-width: 743px) {
    footer {
        height: 8rem;
        font-size: 2rem;
    }
}
.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 5.4rem 0;
}
main {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
main h1 {
    font-weight: 700;
    position: absolute;
}
@media (min-width: 1001px) {
    main {
        padding: 0 0 10rem;
    }
    main h1 {
        top: 6.6rem;
        left: 0;
        font-size: 5rem;
    }
    main > img {
        width: 56.1rem;
    }
}
@media (min-width: 744px) and (max-width: 1000px) {
    main {
        padding: 8rem 0;
    }
    main h1 {
        font-size: 4rem;
        left: 0;
        top: 8rem;
    }
    main > img {
        width: 56rem;
        margin: 7rem auto 0;
    }
}
@media (max-width: 743px) {
    main {
        padding: 12rem 0;
    }
    main h1 {
        left: 0;
        top: 4.1rem;
        font-size: 2.8rem;
    }
    main > img {
        margin-top: 7rem;
        width: 100%;
    }
}
