@font-face {
  font-family: 'Falcon Punch';
  src: url('../fonts/falconpunch.ttf')  format('truetype')
}

/* open-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v40-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/open-sans-v40-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v40-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/open-sans-v40-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --color-primary: #ffa500;
  --color-light: #ebebeb;

  --ff-slogan: 'Falcon Punch';
  --ff-main: 'Open Sans';

  --fs-jumbo: 150px;
  --fs-slogan: 70px;
  --fs-main: 20px;

  --spacing: 50px;
  --x-p: 80px;
  --y-p: 50px;
}

body {
  background: var(--color-primary);
  color: var(--color-light);
  font-family: var(--ff-main);
  --webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

/* typography */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: var(--color-primary);
  font-family: var(--ff-slogan);
  line-height: .8;
  opacity: .8;
}

@supports (mix-blend-mode: color-dodge) {
  h1, .h1,
  h2, .h2,
  h3, .h3,
  h4, .h4,
  h5, .h5,
  h6, .h6 {
    mix-blend-mode: color-dodge;
    opacity: 1;
  }
}

h1, .h1 {
  font-size: var(--fs-slogan);
}

h2, .h2 {
  font-size: calc(var(--fs-slogan) * .84);
}

h3, .h3 {
  font-size: calc(var(--fs-slogan) * .74);
}

h4, .h4 {
  font-size: calc(var(--fs-slogan) * .64);
}

h5, .h5 {
  font-size: calc(var(--fs-slogan) * .54);
}

h6, .h6 {
  font-size: calc(var(--fs-slogan) * .44);
}

.fs-jumbo {
  font-size: var(--fs-jumbo);
}

.fs-main {
  font-size: var(--fs-main);
}

p {
  color: var(--color-light);
  font-size: var(--fs-main);
}

a {
  text-decoration: none;
  color: var(--color-light);
}

/* colors */

.color-primary {
  color: var(--color-primary) !important;
}

/* backgrounds */

.bg-primary {
  background: var(--color-primary) !important;
}

/* layout */

#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: -1;
}

#background .video-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

#background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  padding: 0;
  margin: 0;
}

#background .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background: rgb(0 0 0 / 50%);
}

#main {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

/* bars */

.distance-bar {
  height: 24px;
  background: var(--color-primary);
  opacity: .8;
}

@supports (mix-blend-mode: color-dodge) {
  .distance-bar {
    opacity: 1;
    mix-blend-mode: color-dodge;
  }
}

/* icons */

.icon {
  width: 30px;
  height: 30px;
  display: inline-block;
}

.icon svg {
  width: inhert;
  height: auto;
}

/* responsive */

@media (max-width: 767px) {
  :root {
    --fs-jumbo: 110px;
    --fs-slogan: 50px;
    --fs-main: 18px;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 399px) {
  :root {
    --fs-jumbo: 90px;
    --fs-slogan: 40px;
    --fs-main: 16px;
  }
}

@media (max-width: 349px) {
  :root {
    --fs-jumbo: 70px;
    --fs-slogan: 30px;
    --fs-main: 14px;
  }
}