:root {
  --bg-1: #ffffff;
  --bg-opac-20: rgba(255 255 255 / 20%);
  --bg-opac-65: rgba(255 255 255 / 65%);
  --bg-opac-83: rgba(255 255 255 / 83%);
  --fg-1: #000000;
  --hl-1: #FF8A00;
}

body {
  font-family: "Orbitron",  "M PLUS 1", sans-serif;
  color: var(--fg-1);
  background-color: var(--bg-1);
}

img {
  max-width: 100%;
}
iframe {
  max-width: 100%;
  box-shadow: none;
  border: 0;
}
a, a:hover {
  color: var(--hl-1);
}

.visually-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  clip: rect(1px,1px,1px,1px);
}

.page-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100svh;
}
.page-bg > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-section {
  position: relative;
  padding-left: 2.5rem;
  background-color: var(--bg-1);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-top: 2px solid var(--fg-1);
}
.page-section--b-20 {
  background-color: var(--bg-opac-20);
}
.page-section--b-65 {
  background-color: var(--bg-opac-65);
}
.page-section--b-83 {
  background-color: var(--bg-opac-83);
}
@media screen and (min-width: 768px) {
  .page-section {
    padding-left: 3.75rem;
  }
}
.page-image-section {
  height: calc(var(--vh, 1vh) * 100);
}
.page-image-section > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-container {
  padding: 1.25rem 1.25rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.page-container--medium {
  gap: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 1024px) {
  .page-container--medium {
    padding-top: 3.75rem;
    padding-left: calc(var(--vw, 1vw) * 6.25);
    padding-right: calc(var(--vw, 1vw) * 6.25);
  }
}
.page-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
.page-title > h1, .page-title > h2 {
  padding-bottom: 0.625rem;
  border-bottom: 2px dashed var(--fg-1);
  margin: 0;
  font-size: 2.5rem;
  font-weight: 900;
}
.page-title > p {
  font-size: 1.625rem;
  font-weight: 900;
  margin: 0;
}
.page-spacer {
  height: calc(var(--vh, 1vh) * 100);
}
@media screen and (min-width: 1024px) {
  .page-title > h1, .page-title > h2 {
    font-size: 6.25rem;
  }
  .page-title > p {
    font-size: 3.125rem;
  }
  /* .page-spacer {
    height: 26.875rem;
  } */
}
.button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 900;
  background-color: var(--fg-1);
  color: var(--bg-1);
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0.75rem 1.5rem;
}
.button > img {
  width: 1.5rem;
  height: 1.5rem;
}
.button--small {
  padding: 0.5rem 1.125rem;
}
.button:hover {
  color: var(--bg-1);
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 1.125rem;
  }
}
.button > p {
  margin: 0;
}

.button-wrap--start {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.button-wrap--center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.button-wrap--end {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.25rem;
}





