:root {
  font-size: 10px;
  text-size-adjust: 100%;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --font-size: 1.6rem;
}
@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.06em;
  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;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex-grow: 1;
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.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: white;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.2rem;
  text-underline-offset: 0.3rem;
}
.nav img {
  width: 2.2rem;
}
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;
}
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;
}
footer {
  width: 100%;
  min-width: 100%;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 5.4rem 0;
}
main {
  position: relative;
  display: flex;
  align-items: flex-end;
}
main h1 {
  position: absolute;
}
main > img {
  margin: 0 auto;
  display: block;
}
@media (min-width: 1001px) {
  :root {
    --max-width: 130rem;
  }
  header {
    height: 15rem;
  }
  header section {
    display: none;
  }
  header .logo {
    width: 31.7rem;
  }
  footer {
    height: 12rem;
    font-size: 3rem;
  }
  main h1 {
    top: 6.6rem;
    font-size: 5rem;
  }
  main > img {
    width: 54.3rem;
  }
}
@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;
  }
  header {
    height: 14.5rem;
  }
  header section {
    display: none;
  }
  header .logo {
    width: 28.2rem;
  }
  footer {
    height: 10.2rem;
    font-size: 2.4rem;
  }
  main {
    padding-top: 19.5rem;
  }
  main h1 {
    top: 6.5rem;
    font-size: 4rem;
  }
  main > img {
    width: 100%;
  }
}
@media (max-width: 743px) {
  :root {
    --max-width: 30.6rem;
    font-size: 2.6666666667vw;
  }
  .nav {
    display: none;
  }
  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: 2px solid transparent;
    border-image-source: repeating-linear-gradient(to right, #FF7A00 0, #FF7A00 2px, transparent 2px, transparent 6px);
  }
  footer {
    height: 8rem;
    font-size: 2rem;
  }
  main {
    padding-top: 13.4rem;
  }
  main h1 {
    top: 4.1rem;
    font-size: 2.8rem;
  }
  main > img {
    width: 100%;
  }
}
