/* Object Sans */
@font-face {
  font-family: "PP Object Sans";
  src: url("../Fonts/Object Sans/PPObjectSans-Thin.otf") format("opentype"),
    url("../Fonts/Object Sans/PPObjectSans-Thin.ttf") format("truetype");
  /* font-weight: 100; */
  font-style: normal;
}

@font-face {
  font-family: "PP Object Sans";
  src: url("../Fonts/Object Sans/PPObjectSans-ThinSlanted.otf") format("opentype"),
    url("../Fonts/Object Sans/PPObjectSans-ThinSlanted.ttf") format("truetype");
  /* font-weight: 100; */
  font-style: italic;
}

@font-face {
  font-family: "PP Object Sans";
  src: url("../Fonts/Object Sans/PPObjectSans-Regular.otf") format("opentype"),
    url("../Fonts/Object Sans/PPObjectSans-Regular.ttf") format("truetype");
  /* font-weight: 400; */
  font-style: normal;
}

@font-face {
  font-family: "PP Object Sans";
  src: url("../Fonts/Object Sans/PPObjectSans-Slanted.otf") format("opentype"),
    url("../Fonts/Object Sans/PPObjectSans-Slanted.ttf") format("truetype");
  /* font-weight: 400; */
  font-style: italic;
}

@font-face {
  font-family: "PP Object Sans";
  src: url("../Fonts/Object Sans/PPObjectSans-Bold.otf") format("opentype"),
    url("../Fonts/Object Sans/PPObjectSans-Bold.ttf") format("truetype");
  /* font-weight: 700; */
  font-style: normal;
}

@font-face {
  font-family: "PP Object Sans";
  src: url("../Fonts/Object Sans/PPObjectSans-BoldSlanted.otf") format("opentype"),
    url("../Fonts/Object Sans/PPObjectSans-BoldSlanted.ttf") format("truetype");
  /* font-weight: 700; */
  font-style: italic;
}

@font-face {
  font-family: "PP Object Sans";
  src: url("../Fonts/Object Sans/PPObjectSans-Heavy.otf") format("opentype"),
    url("../Fonts/Object Sans/PPObjectSans-Heavy.ttf") format("truetype");
  /* font-weight: 900; */
  font-style: normal;
}

@font-face {
  font-family: "PP Object Sans";
  src: url("../Fonts/Object Sans/PPObjectSans-HeavySlanted.otf") format("opentype"),
    url("../Fonts/Object Sans/PPObjectSans-HeavySlanted.ttf") format("truetype");
  /* font-weight: 900; */
  font-style: italic;
}

/* Druk Wide Trial */
@font-face {
  font-family: "Druk Wide Trial";
  src: url("../Fonts/Druk Wide Trial/DrukWide-SuperItalic-Trial.otf") format("opentype");
  /* font-weight: 800; */
  font-style: normal;
}

:root {
  --font-primary: "PP Object Sans", sans-serif;
  --font-secondary: "Druk Wide Trial", sans-serif;

  --color-text: #fff;
  --color-text-secondary: #eaeaea;

  --color-bg: #000;
  --color-bg-secondary: #131416;

  --color-callout: #24262a;

  --color-primary: #1a5841;
  --color-primary-light: #2d8a5f;
  --color-primary-dark: #0f3d2b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: var(--font-primary);
  background-color: var(--color-bg);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

a,
p,
span {
  text-decoration: none;
  font-size: 13px;
  color: var(--color-text);
}

h2 {
  font-weight: 500;
  font-size: 80px;
  color: var(--color-text-secondary);
  letter-spacing: -2px;
  line-height: 100%;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}

.callout {
  width: max-content;
  padding: 0.5em 1em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.125);
  border-radius: 12px;
  margin-bottom: 2em;
}