html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:not(iframe, canvas, img, svg, video, svg *) {
  all: unset;
  display: revert;
}
*,
:after,
:before {
  box-sizing: border-box !important;
}
ol,
ul {
  list-style: none;
}
img {
  max-width: 100%;
}
table {
  border-collapse: collapse;
}
textarea {
  white-space: revert;
}
@font-face {
  font-family: Slussen;
  src: url(/fonts/Slussen-Compressed-Black.woff2) format("woff2");
  font-display: swap;
  font-weight: 900;
  font-stretch: compressed;
}
@font-face {
  font-family: Slussen;
  src: url(/fonts/Slussen-Expanded-Black.woff2) format("woff2");
  font-display: swap;
  font-weight: 900;
  font-stretch: expanded;
}
@font-face {
  font-family: Slussen;
  src: url(/fonts/Slussen-Medium.woff2) format("woff2");
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: Slussen;
  src: url(/fonts/Slussen-Regular.woff2) format("woff2");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: Slussen;
  src: url(/fonts/Slussen-Semibold.woff2) format("woff2");
  font-display: swap;
  font-weight: 600;
}
@font-face {
  font-family: Slussen;
  src: url(/fonts/Slussen-Bold.woff2) format("woff2");
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: Respira;
  src: url(/fonts/Respira-Black.woff2) format("woff2");
  font-display: swap;
  font-weight: 900;
}
@font-face {
  font-family: League Gothic;
  src: url(/fonts/leaguegothic-regular-webfont.woff2) format("woff2"),
    url(/fonts/leaguegothic-regular-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: League Gothic;
  src: url(/fonts/leaguegothic-italic-webfont.woff) format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --font-primary: "Slussen";
  --font-league-gothic: "League Gothic", sans-serif;
  --white: #efefef;
  --white-transparent: hsla(0, 0%, 94%, 0);
  --grey: #b0b0b0;
  --grey-transparent: hsla(0, 0%, 69%, 0);
  --black: #000;
  --black-transparent: transparent;
  --pink: #4cd964;
  --pink-transparent: rgba(76, 217, 100, 0);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --layout-columns-count: 6;
  --layout-columns-gap: 6.4vw;
  --layout-margin: 4.2666666667vw;
  --layout-width: calc(100vw - (2 * var(--layout-margin)));
  --layout-column-width: calc(
    (
        var(--layout-width) -
          ((var(--layout-columns-count) - 1) * var(--layout-columns-gap))
      ) / var(--layout-columns-count)
  );
}
@media (min-width: 800px) {
  :root {
    --layout-columns-count: 12;
    --layout-columns-gap: 1.6666666667vw;
    --layout-margin: 2.7777777778vw;
  }
}
.layout-block,
.layout-grid {
  max-width: var(--layout-width);
  margin-left: auto;
  margin-right: auto;
}
.layout-block-inner,
.layout-grid-inner {
  padding-left: var(--layout-margin);
  padding-right: var(--layout-margin);
}
.layout-grid,
.layout-grid-inner {
  display: grid;
  grid-template-columns: repeat(var(--layout-columns-count), minmax(0, 1fr));
  grid-gap: var(--layout-columns-gap);
}
.aspect-ratio {
  position: relative;
  padding-bottom: calc(100% / var(--aspect-ratio));
  width: 100%;
  height: 0;
}
.aspect-ratio > :first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.hidden-overflow {
  overflow: hidden;
}
.relative {
  position: relative;
}
@media (min-width: 800px) {
  .hide-on-desktop {
    display: none !important;
  }
}
@media (max-width: 800px) {
  .hide-on-mobile {
    display: none !important;
  }
}
html.has-scroll-smooth .hide-on-smooth-scroll,
html:not(.has-scroll-smooth) .hide-on-native-scroll {
  display: none !important;
}
.h1 {
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 86%;
  font-size: 14.9333333333vw;
}
@media (min-width: 800px) {
  .h1 {
    font-size: 11.1111111111vw;
    line-height: 85%;
  }
}
.h1.vh {
  font-size: 8.6153846154vh;
}
@media (min-width: 800px) {
  .h1.vh {
    font-size: 18.8235294118vh;
  }
}
.h2 {
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 86%;
  font-size: 14.9333333333vw;
}
@media (min-width: 800px) {
  .h2 {
    font-size: 6.6666666667vw;
    line-height: 83%;
  }
}
.h2.vh {
  font-size: 8.6153846154vh;
}
@media (min-width: 800px) {
  .h2.vh {
    font-size: 11.2941176471vh;
  }
}
.h3 {
  font-stretch: expanded;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 100%;
  font-size: 5.3333333333vw;
  letter-spacing: -0.01em;
}
@media (min-width: 800px) {
  .h3 {
    letter-spacing: 0.01em;
    font-size: 3.6111111111vw;
  }
}
.h3.vh {
  font-size: 3.0769230769vh;
}
@media (min-width: 800px) {
  .h3.vh {
    font-size: 6.1176470588vh;
  }
}
.h4 {
  font-stretch: expanded;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 100%;
  font-size: 5.3333333333vw;
}
@media (min-width: 800px) {
  .h4 {
    font-size: 1.9444444444vw;
    letter-spacing: -0.01em;
  }
}
.p-l {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  font-size: 8.5333333333vw;
}
@media (min-width: 800px) {
  .p-l {
    font-size: 4.4444444444vw;
  }
}
.p {
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 125%;
  font-size: 4.2666666667vw;
}
@media (min-width: 800px) {
  .p {
    font-size: 1.25vw;
    line-height: 133%;
  }
}
.p.bold {
  font-weight: 600;
  line-height: 125%;
}
@media (min-width: 800px) {
  .p.bold {
    line-height: 133%;
  }
}
.p-s {
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-size: 3.7333333333vw;
}
@media (min-width: 800px) {
  .p-s {
    font-size: 0.9722222222vw;
    line-height: 114%;
  }
}
.p-xs {
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-size: 3.2vw;
}
@media (min-width: 800px) {
  .p-xs {
    font-size: 0.8333333333vw;
    line-height: 113%;
  }
}
.semi-bold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.contrast {
  color: var(--theme-contrast);
}
.grey {
  color: var(--grey);
}
.theme-light {
  --theme-primary: #efefef;
  --theme-primary-transparent: hsla(0, 0%, 94%, 0);
  --theme-secondary: #000;
  --theme-secondary-transparent: transparent;
  --theme-contrast: #4cd964;
  --theme-contrast-transparent: rgba(76, 217, 100, 0);
}
.theme-dark {
  --theme-primary: #000;
  --theme-primary-transparent: transparent;
  --theme-secondary: #efefef;
  --theme-secondary-transparent: hsla(0, 0%, 94%, 0);
  --theme-contrast: #4cd964;
  --theme-contrast-transparent: rgba(76, 217, 100, 0);
}
.theme-contrast {
  --theme-primary: #4cd964;
  --theme-primary-transparent: rgba(76, 217, 100, 0);
  --theme-secondary: #000;
  --theme-secondary-transparent: transparent;
  --theme-contrast: #efefef;
  --theme-contrast-transparent: hsla(0, 0%, 94%, 0);
}
html {
  overflow: overlay;
}
:root {
  --header-height: 15.4666666667vw;
}
@media (min-width: 800px) {
  :root {
    --header-height: 6.8055555556vw;
  }
}
html {
  font-weight: bolder;
  font-family: var(--font-primary);
  scrollbar-width: thin;
}
html.lenis-stopped,
html.nav {
  overflow: hidden;
}
body,
html {
  overscroll-behavior-y: none;
}
body {
  min-height: 100vh;
}
a,
button,
input,
label,
select,
textarea {
  color: inherit;
  cursor: pointer;
}
::selection {
  background-color: var(--theme-contrast);
  color: var(--theme-primary);
}
svg.icon circle[fill],
svg.icon path[fill],
svg.icon rect[fill] {
  fill: currentColor;
}
svg.icon circle[stroke],
svg.icon path[stroke],
svg.icon rect[stroke] {
  stroke: currentColor;
}
.intro {
  overflow: hidden;
}
