/*!*******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs/index.js!./src/scss/main.scss ***!
  \*******************************************************************************************************************/
/* ================================
   COLORS
================================ */
/* ================================
   FLUID SCALING ENGINE
================================ */
html {
  font-size: clamp(0.85px, 100vw / var(--context), 1.2px);
}

:root {
  --context: 1500;
  --ff-primary: "Blast", sans-serif;
  --fs-1: 85rem;
  --fs-2: 60rem;
  --fs-body: 18rem;
  --fs-small: 14rem;
  --fs-large: 25rem;
  --fw-bold: 600;
  --space: 10rem;
  --space-1: calc(var(--space) * 1);
  --space-2: calc(var(--space) * 2);
  --space-3: calc(var(--space) * 3);
  --space-4: calc(var(--space) * 4);
  --space-6: calc(var(--space) * 6);
  --space-8: calc(var(--space) * 8);
  --space-12: calc(var(--space) * 12);
  --space-16: calc(var(--space) * 16);
  --space-24: calc(var(--space) * 24);
  --space-32: calc(var(--space) * 32);
  --side-gap: 20rem;
  --gutter: 40rem;
}

@font-face {
  font-family: "Blast";
  src: url(../js/46e19f4b7626f5a97478.otf);
  font-weight: 300;
}
@font-face {
  font-family: "Blast";
  src: url(../js/a72e9792d87ecb7751ed.otf);
  font-weight: 600;
}
@media (min-width: 1920px) {
  :root {
    --context: 1920;
  }
}
@media (max-width: 915px) {
  :root {
    --context: 768;
    --fs-large: 22rem;
    --fs-1: 65rem;
    --fs-2: 45rem;
  }
}
@media (max-width: 500px) {
  :root {
    --side-gap: 10rem;
    --context: 390;
    --gutter: 10rem;
    --fs-1: 50rem;
    --fs-2: 35rem;
  }
}
@media (orientation: landscape) and (min-width: 451px) and (max-width: 925px) and (max-height: 433px) {
  :root {
    --context: 850;
  }
}
@media (max-width: 933px) and (max-height: 433px) {
  :root {
    --context: 930;
  }
}
body {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  line-height: 1.2;
  background-color: #fff;
  font-weight: 300;
  color: #1e1e1c;
}

h1,
.h1 {
  font-size: var(--fs-1);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: var(--fw-bold);
  font-family: "Blast";
}

h2,
.h2 {
  font-size: var(--fs-2);
  line-height: 1.1;
  font-weight: var(--fw-bold);
  font-family: "Blast";
}

p,
.base-text {
  font-size: var(--fs-body);
  line-height: 1.3;
}

.text-sm {
  font-size: var(--fs-small);
  line-height: 1.3;
}

.text-lg {
  font-size: var(--fs-large);
  line-height: 1.3;
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  width: 100%;
}

.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

.offset-1 {
  margin-left: calc((100% - var(--gutter) * 11) / 12 * 1 + var(--gutter) * 0);
}

.offset-2 {
  margin-left: calc((100% - var(--gutter) * 11) / 12 * 2 + var(--gutter) * 1);
}

.offset-3 {
  margin-left: calc((100% - var(--gutter) * 11) / 12 * 3 + var(--gutter) * 2);
}

.offset-4 {
  margin-left: calc((100% - var(--gutter) * 11) / 12 * 4 + var(--gutter) * 3);
}

.offset-5 {
  margin-left: calc((100% - var(--gutter) * 11) / 12 * 5 + var(--gutter) * 4);
}

.offset-6 {
  margin-left: calc((100% - var(--gutter) * 11) / 12 * 6 + var(--gutter) * 5);
}

.offset-7 {
  margin-left: calc((100% - var(--gutter) * 11) / 12 * 7 + var(--gutter) * 6);
}

.offset-8 {
  margin-left: calc((100% - var(--gutter) * 11) / 12 * 8 + var(--gutter) * 7);
}

.offset-9 {
  margin-left: calc((100% - var(--gutter) * 11) / 12 * 9 + var(--gutter) * 8);
}

.offset-10 {
  margin-left: calc((100% - var(--gutter) * 11) / 12 * 10 + var(--gutter) * 9);
}

.offset-11 {
  margin-left: calc((100% - var(--gutter) * 11) / 12 * 11 + var(--gutter) * 10);
}

@media (min-width: 576px) {
  .col-sm-1 {
    grid-column: span 1;
  }
  .col-sm-2 {
    grid-column: span 2;
  }
  .col-sm-3 {
    grid-column: span 3;
  }
  .col-sm-4 {
    grid-column: span 4;
  }
  .col-sm-5 {
    grid-column: span 5;
  }
  .col-sm-6 {
    grid-column: span 6;
  }
  .col-sm-7 {
    grid-column: span 7;
  }
  .col-sm-8 {
    grid-column: span 8;
  }
  .col-sm-9 {
    grid-column: span 9;
  }
  .col-sm-10 {
    grid-column: span 10;
  }
  .col-sm-11 {
    grid-column: span 11;
  }
  .col-sm-12 {
    grid-column: span 12;
  }
  .offset-sm-1 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 1 + var(--gutter) * 0);
  }
  .offset-sm-2 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 2 + var(--gutter) * 1);
  }
  .offset-sm-3 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 3 + var(--gutter) * 2);
  }
  .offset-sm-4 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 4 + var(--gutter) * 3);
  }
  .offset-sm-5 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 5 + var(--gutter) * 4);
  }
  .offset-sm-6 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 6 + var(--gutter) * 5);
  }
  .offset-sm-7 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 7 + var(--gutter) * 6);
  }
  .offset-sm-8 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 8 + var(--gutter) * 7);
  }
  .offset-sm-9 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 9 + var(--gutter) * 8);
  }
  .offset-sm-10 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 10 + var(--gutter) * 9);
  }
  .offset-sm-11 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 11 + var(--gutter) * 10);
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    grid-column: span 1;
  }
  .col-md-2 {
    grid-column: span 2;
  }
  .col-md-3 {
    grid-column: span 3;
  }
  .col-md-4 {
    grid-column: span 4;
  }
  .col-md-5 {
    grid-column: span 5;
  }
  .col-md-6 {
    grid-column: span 6;
  }
  .col-md-7 {
    grid-column: span 7;
  }
  .col-md-8 {
    grid-column: span 8;
  }
  .col-md-9 {
    grid-column: span 9;
  }
  .col-md-10 {
    grid-column: span 10;
  }
  .col-md-11 {
    grid-column: span 11;
  }
  .col-md-12 {
    grid-column: span 12;
  }
  .offset-md-1 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 1 + var(--gutter) * 0);
  }
  .offset-md-2 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 2 + var(--gutter) * 1);
  }
  .offset-md-3 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 3 + var(--gutter) * 2);
  }
  .offset-md-4 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 4 + var(--gutter) * 3);
  }
  .offset-md-5 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 5 + var(--gutter) * 4);
  }
  .offset-md-6 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 6 + var(--gutter) * 5);
  }
  .offset-md-7 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 7 + var(--gutter) * 6);
  }
  .offset-md-8 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 8 + var(--gutter) * 7);
  }
  .offset-md-9 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 9 + var(--gutter) * 8);
  }
  .offset-md-10 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 10 + var(--gutter) * 9);
  }
  .offset-md-11 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 11 + var(--gutter) * 10);
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    grid-column: span 1;
  }
  .col-lg-2 {
    grid-column: span 2;
  }
  .col-lg-3 {
    grid-column: span 3;
  }
  .col-lg-4 {
    grid-column: span 4;
  }
  .col-lg-5 {
    grid-column: span 5;
  }
  .col-lg-6 {
    grid-column: span 6;
  }
  .col-lg-7 {
    grid-column: span 7;
  }
  .col-lg-8 {
    grid-column: span 8;
  }
  .col-lg-9 {
    grid-column: span 9;
  }
  .col-lg-10 {
    grid-column: span 10;
  }
  .col-lg-11 {
    grid-column: span 11;
  }
  .col-lg-12 {
    grid-column: span 12;
  }
  .offset-lg-1 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 1 + var(--gutter) * 0);
  }
  .offset-lg-2 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 2 + var(--gutter) * 1);
  }
  .offset-lg-3 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 3 + var(--gutter) * 2);
  }
  .offset-lg-4 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 4 + var(--gutter) * 3);
  }
  .offset-lg-5 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 5 + var(--gutter) * 4);
  }
  .offset-lg-6 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 6 + var(--gutter) * 5);
  }
  .offset-lg-7 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 7 + var(--gutter) * 6);
  }
  .offset-lg-8 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 8 + var(--gutter) * 7);
  }
  .offset-lg-9 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 9 + var(--gutter) * 8);
  }
  .offset-lg-10 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 10 + var(--gutter) * 9);
  }
  .offset-lg-11 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 11 + var(--gutter) * 10);
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    grid-column: span 1;
  }
  .col-xl-2 {
    grid-column: span 2;
  }
  .col-xl-3 {
    grid-column: span 3;
  }
  .col-xl-4 {
    grid-column: span 4;
  }
  .col-xl-5 {
    grid-column: span 5;
  }
  .col-xl-6 {
    grid-column: span 6;
  }
  .col-xl-7 {
    grid-column: span 7;
  }
  .col-xl-8 {
    grid-column: span 8;
  }
  .col-xl-9 {
    grid-column: span 9;
  }
  .col-xl-10 {
    grid-column: span 10;
  }
  .col-xl-11 {
    grid-column: span 11;
  }
  .col-xl-12 {
    grid-column: span 12;
  }
  .offset-xl-1 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 1 + var(--gutter) * 0);
  }
  .offset-xl-2 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 2 + var(--gutter) * 1);
  }
  .offset-xl-3 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 3 + var(--gutter) * 2);
  }
  .offset-xl-4 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 4 + var(--gutter) * 3);
  }
  .offset-xl-5 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 5 + var(--gutter) * 4);
  }
  .offset-xl-6 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 6 + var(--gutter) * 5);
  }
  .offset-xl-7 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 7 + var(--gutter) * 6);
  }
  .offset-xl-8 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 8 + var(--gutter) * 7);
  }
  .offset-xl-9 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 9 + var(--gutter) * 8);
  }
  .offset-xl-10 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 10 + var(--gutter) * 9);
  }
  .offset-xl-11 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 11 + var(--gutter) * 10);
  }
}
@media (min-width: 1400px) {
  .col-xxl-1 {
    grid-column: span 1;
  }
  .col-xxl-2 {
    grid-column: span 2;
  }
  .col-xxl-3 {
    grid-column: span 3;
  }
  .col-xxl-4 {
    grid-column: span 4;
  }
  .col-xxl-5 {
    grid-column: span 5;
  }
  .col-xxl-6 {
    grid-column: span 6;
  }
  .col-xxl-7 {
    grid-column: span 7;
  }
  .col-xxl-8 {
    grid-column: span 8;
  }
  .col-xxl-9 {
    grid-column: span 9;
  }
  .col-xxl-10 {
    grid-column: span 10;
  }
  .col-xxl-11 {
    grid-column: span 11;
  }
  .col-xxl-12 {
    grid-column: span 12;
  }
  .offset-xxl-1 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 1 + var(--gutter) * 0);
  }
  .offset-xxl-2 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 2 + var(--gutter) * 1);
  }
  .offset-xxl-3 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 3 + var(--gutter) * 2);
  }
  .offset-xxl-4 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 4 + var(--gutter) * 3);
  }
  .offset-xxl-5 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 5 + var(--gutter) * 4);
  }
  .offset-xxl-6 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 6 + var(--gutter) * 5);
  }
  .offset-xxl-7 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 7 + var(--gutter) * 6);
  }
  .offset-xxl-8 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 8 + var(--gutter) * 7);
  }
  .offset-xxl-9 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 9 + var(--gutter) * 8);
  }
  .offset-xxl-10 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 10 + var(--gutter) * 9);
  }
  .offset-xxl-11 {
    margin-left: calc((100% - var(--gutter) * 11) / 12 * 11 + var(--gutter) * 10);
  }
}
.lh-fix {
  position: relative;
  top: 1px;
}
.lh-fix-logo {
  position: relative;
  top: 1px;
}

.frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
}
.frame-parent {
  padding: 15px;
}
.frame > div {
  position: absolute;
  width: 8px;
  height: 8px;
}
.frame-top-left {
  top: 0;
  left: 0;
}
.frame-top-right {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}
.frame-bottom-left {
  bottom: 0;
  left: 0;
  transform: rotate(-90deg);
}
.frame-bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.btn {
  background-color: #e9e8e8;
  color: #1e1e1c;
  padding: 5rem;
  padding-right: 10rem;
  font-family: "Blast";
}
.btn a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn a span {
  position: relative;
  top: 2px;
  font-weight: 600;
}
.btn a .icon {
  background-color: #1e1e1c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27rem;
  height: 27rem;
}
.btn a .icon__line {
  width: 10px;
  height: 2px;
  background-color: #e9e8e8;
  display: block;
  position: absolute;
}
.btn a .icon__line:first-of-type {
  transform: rotate(90deg);
}

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

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main[data-barba=container] {
  width: 100%;
  transform-origin: top;
}

.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  transform-origin: bottom;
  transform: scaleY(0);
}

[data-split-text] .line {
  overflow: hidden;
}

/* ================================
   REMOVE TEXT SELECTION HIGHLIGHT
================================ */
::selection {
  background: transparent;
  color: inherit;
}

::-moz-selection {
  background: transparent;
  color: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  z-index: 1001;
  padding: var(--side-gap);
  font-size: 20px;
  width: 100vw;
  color: #e9e8e8;
  font-size: var(--fs-body);
  font-family: "Blast";
  font-weight: 600;
  mix-blend-mode: difference;
  color: #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  backdrop-filter: blur(5px);
  padding: 6px;
  border-radius: 2px;
}
.header__logo {
  font-size: 25px;
}
.header__live-recording {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 70px;
  display: flex;
  justify-content: center;
}
.header__live-recording .icon {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #dd0000;
}
.header__live-recording .text {
  width: 50px;
  font-size: 17px;
}
.header__menu ul {
  list-style: none;
  display: flex;
  gap: 7rem;
}
.header__menu ul li {
  padding: 4rem 5rem;
  border-radius: 2px;
  font-weight: 600;
}
.header__menu ul li a {
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    justify-content: space-between;
    width: 100%;
  }
}

.menu {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  background-color: #e9e8e8;
  z-index: 1000;
  display: flex;
  justify-content: center;
  clip-path: inset(0% 0% 100% 0%);
}
.menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.menu__list__wrapper {
  width: 100%;
  position: relative;
}
.menu__list .background-color {
  background-color: #ff5e00;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}
.menu__list-item {
  overflow: hidden;
}
.menu__list li {
  font-size: 100rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -3px;
  width: 100%;
  text-align: center;
  padding: 5px 0;
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
}
@media (hover: hover) {
  .menu__list li:hover {
    color: #e9e8e8;
  }
}
.menu__list li a {
  width: 100%;
  display: block;
}
.menu__marquee {
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100vw;
}
.menu__marquee__track {
  display: flex;
  width: max-content;
  gap: 25px;
}
.menu__marquee__track span {
  color: #ff5e00;
}
@media screen and (max-width: 768px) {
  .menu__list li {
    font-size: 50rem;
  }
}

body.home {
  height: 100dvh;
  overflow: hidden;
}

.hero__video {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: var(--side-gap);
  background: #1e1e1c;
}
.hero__video--fullscreen {
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
}
.hero__video__wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero__video__element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.hero__video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 2;
}
.hero__video__mask {
  width: 30vw;
  aspect-ratio: 16/10;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.hero__video__mask__element {
  max-width: unset;
  width: 100vw;
  height: 100dvh;
  position: absolute;
  object-fit: cover;
}
.hero__video__mask__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  z-index: 10;
  box-shadow: 0px 0px 0px 100vw rgba(0, 0, 0, 0.6);
}
.hero__video__mask__frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.hero__video__mask__frame .top-left,
.hero__video__mask__frame .top-right,
.hero__video__mask__frame .bottom-left,
.hero__video__mask__frame .bottom-right,
.hero__video__mask__frame .center {
  width: 10px;
  position: absolute;
}
.hero__video__mask__frame .top-left svg,
.hero__video__mask__frame .top-right svg,
.hero__video__mask__frame .bottom-left svg,
.hero__video__mask__frame .bottom-right svg,
.hero__video__mask__frame .center svg {
  width: 100%;
}
.hero__video__mask__frame .top-left {
  top: 6px;
  left: 6px;
}
.hero__video__mask__frame .bottom-left {
  bottom: 6px;
  left: 6px;
  transform: rotate(-90deg);
}
.hero__video__mask__frame .top-right {
  top: 6px;
  right: 6px;
  transform: rotate(90deg);
}
.hero__video__mask__frame .bottom-right {
  bottom: 6px;
  right: 6px;
  transform: rotate(180deg);
}
.hero__video__mask__frame .center {
  width: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero__video__title {
  position: relative;
  z-index: 10;
  color: #e9e8e8;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 15dvh;
  text-align: center;
}
.hero__video__button {
  position: absolute;
  z-index: 10;
  bottom: 40rem;
}
@media screen and (max-width: 915px) {
  .hero__video__mask {
    width: 70vw;
    aspect-ratio: 9/9;
  }
}

.about {
  position: relative;
  z-index: 10;
}
.about__hero-container {
  background-color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__hero-title {
  padding: 0 var(--side-gap);
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1;
}

.scene {
  perspective: 1000px;
  overflow: hidden;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.scene .card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.scene .card__img {
  width: 80px;
  border-radius: 5px;
  aspect-ratio: 2/3;
  background-position: center;
  background-size: cover;
}

.about-sticky-video {
  position: relative;
  color: #e9e8e8;
}
.about-sticky-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.about-sticky-video video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.about-sticky-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  backdrop-filter: blur(10px);
  z-index: 3;
  opacity: 0;
}
.about-sticky-video__info {
  position: relative;
  z-index: 4;
  padding: 0 var(--side-gap);
  padding-top: 100vh;
  padding-bottom: 30vh;
  font-size: var(--fs-large);
  font-family: "Blast";
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}
@media screen and (max-width: 1000px) {
  .about-sticky-video__info {
    grid-template-columns: 1fr;
    gap: 200px;
    padding-bottom: 0;
  }
}
.about-sticky-video__info .frame {
  opacity: 1;
}
.about-sticky-video__info .info-row {
  position: relative;
  margin-bottom: 7%;
}
.about-sticky-video__info .info-row__text {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  height: 180px;
  position: relative;
  font-weight: 600;
}
.about-sticky-video__cta {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: var(--side-gap);
  text-align: center;
  position: relative;
  z-index: 4;
}

.contact-page-wrapper {
  height: 100vh;
}

.contact {
  display: flex;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact__marquee {
  position: absolute;
  left: 0;
  top: 20%;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}
.contact__marquee__track {
  display: flex;
  width: max-content;
  gap: 70px;
}
.contact__marquee__track__item span {
  color: #ff5e00;
}
.contact__video {
  width: 25vw;
}
.contact__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__info {
  width: 75vw;
}
.contact__info__block {
  padding-top: 40%;
  padding-left: 80px;
  padding-right: 80px;
  row-gap: 100px;
}
@media screen and (max-width: 1200px) {
  .contact__info__block {
    padding-top: 55%;
    padding-left: 70px;
    padding-right: 70px;
  }
}
.contact__info__block .sub-heading {
  color: #ff5e00;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: var(--fs-small);
}
.contact__info__block a {
  font-size: var(--fs-large);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .contact {
    display: block;
  }
  .contact__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
  }
  .contact__video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.6;
  }
  .contact__info {
    position: relative;
    z-index: 2;
    width: 100vw;
  }
  .contact__info__block {
    padding: 35vh var(--side-gap) 0;
    row-gap: 30px;
    color: #e9e8e8;
  }
  .contact__info__block .sub-heading {
    margin-bottom: 2px;
  }
  .contact__marquee {
    top: 17%;
  }
  .contact__marquee__track__item {
    color: #e9e8e8;
  }
}

.projects-wrapper {
  overflow: hidden;
  height: 100dvh;
  position: relative;
}
.projects-wrapper-track {
  display: flex;
}
@media screen and (max-width: 768px) {
  .projects-wrapper-track {
    flex-direction: column;
  }
}

.project__block {
  height: 100dvh;
  width: 100vw;
  position: relative;
  user-select: none;
  flex-shrink: 0;
}
.project__block a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.project__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.project__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  z-index: 2;
  transition: opacity 0.5s;
}
.project__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}
.project__title {
  text-transform: uppercase;
}
.project__info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #e9e8e8;
  width: 100%;
  padding: var(--side-gap);
  opacity: 0.2;
  transition: opacity 0.4s;
}
.project__info .line {
  width: 100%;
  height: 1px;
  background-color: #e9e8e8;
  opacity: 0.1;
}
.project__type {
  align-self: flex-end;
  font-weight: 600;
}
.project__block.active .project__info {
  opacity: 1;
}
.project__block.active .project__image::before {
  opacity: 0.5;
}

.projects-indicator {
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 6px;
  z-index: 1;
}
.projects-indicator .line {
  width: 1px;
  height: 25px;
  background-color: #fff;
  opacity: 0.3;
  transition: all 0.5s;
  transform: scaleY(0.7);
  transform-origin: bottom;
}
.projects-indicator .line.active {
  opacity: 1;
  transform: scaleY(1);
}

.gear-hero {
  padding: 160px var(--side-gap) 0;
}
.gear-hero__text {
  max-width: 500px;
}

.gear-list {
  font-size: var(--fs-6);
  font-weight: var(--fw-heading-semibold);
  padding: 0 var(--side-gap);
  margin-top: var(--space-16);
}
.gear-list__filters {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 13px 0;
  display: flex;
  align-items: center;
  position: relative;
  gap: 30px;
  background: #e9e8e8;
}
.gear-list__title {
  position: relative;
  opacity: 0.4;
}
.gear-list__title::before {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.gear-list__list {
  display: flex;
  gap: 10px;
  overflow: hidden;
}
.gear-list__filter {
  transition: all 0.2s;
  padding: 2px 8px;
  cursor: pointer;
}
.gear-list__filter.active {
  background-color: #ff5e00;
  color: #e9e8e8;
}
.gear-list__grid {
  padding-bottom: 8vh;
  margin-top: var(--space-4);
  row-gap: 60rem;
}
.gear-list__item-title {
  margin-top: 5px;
}
.gear-list__item-image {
  aspect-ratio: 9/12;
}
.gear-list__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aerial-shots {
  position: relative;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aerial-shots__title {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  z-index: 10;
}
.aerial-shots__grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150vw;
  height: 150vw;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 40px;
  z-index: 9 !important;
  cursor: grab;
}
@media screen and (max-width: 768px) {
  .aerial-shots__grid {
    width: 400vw;
    height: 400vw;
  }
}
.aerial-shots__container {
  position: absolute;
  left: 10px;
  bottom: 10px;
  overflow: hidden;
  width: 100vw;
}
.aerial-shots__wrapper {
  display: flex;
  width: fit-content;
  height: 100%;
  width: 100%;
}
.aerial-shots__track {
  display: flex;
}
.aerial-shots__grid-item {
  height: 50vh;
  width: auto;
  aspect-ratio: 12/16;
  overflow: hidden;
  margin-right: 10px;
  opacity: 0;
}
.aerial-shots__grid-item .index {
  padding-bottom: 5px;
  font-weight: 600;
}
.aerial-shots__grid-item__image {
  background-color: rgba(30, 30, 28, 0.5);
  height: 100%;
}
.aerial-shots__grid-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .aerial-shots__container {
    bottom: 10px;
  }
  .aerial-shots__grid-item {
    height: 40vh;
  }
}

.single-project__hero {
  height: 100dvh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.single-project__image {
  width: 100%;
  height: 100vh;
  position: absolute;
  transform-origin: bottom;
}
.single-project__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 2;
}
.single-project__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-project__title {
  position: relative;
  z-index: 4;
  color: #e9e8e8;
  padding: var(--side-gap);
  text-transform: uppercase;
}
.single-project__content {
  margin-top: var(--space-5);
  padding: 0 var(--side-gap);
}
.single-project__content .sticky {
  position: sticky;
  top: 17%;
  height: max-content;
}
.single-project__top-content {
  padding: var(--space-4) 0 var(--space-8);
}
.single-project__description {
  max-width: 900px;
}
.single-project__duty {
  font-size: var(--fs-body);
  text-align: right;
  font-weight: 600;
}
.single-project__hero-video {
  margin-bottom: var(--space-8);
}
.single-project__hero-video video {
  border-radius: 2px;
  width: 100%;
  aspect-ratio: 16/9;
}
.single-project__credits {
  font-size: var(--fs-body);
  font-weight: 600;
  position: relative;
}
.single-project__credits-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.single-project__credits-line:not(:first-child) {
  margin-top: 20px;
}
.single-project__credits .name {
  font-weight: 300;
}
.single-project__images {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.single-project__images img,
.single-project__images video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #f4f4f4;
  border-radius: 2px;
}
@media screen and (max-width: 992px) {
  .single-project__content .sticky {
    position: relative;
    top: 0;
  }
  .single-project__credits {
    margin-bottom: var(--space-8);
  }
}
@media screen and (max-width: 767px) {
  .single-project__duty {
    margin-top: var(--space-4);
  }
  .single-project__hero-video {
    margin-bottom: var(--space-6);
  }
  .single-project__top-content {
    padding-bottom: var(--space-6);
  }
  .single-project__credits {
    margin-bottom: var(--space-6);
  }
}

.next-project {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.next-project__subtitle {
  font-weight: var(--fw-bold);
}
.next-project__title {
  margin-top: var(--space-1);
}
.next-project__image {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(0);
  clip-path: inset(50% 25% 0%);
}
.next-project__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 2;
}
.next-project__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.modal-gallery {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  backdrop-filter: blur(10px);
  font-family: "Blast";
}
.modal-gallery.active {
  opacity: 1;
  pointer-events: all;
}
.modal-gallery__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9998;
}
.modal-gallery__content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-gallery__image {
  width: auto;
  height: 85%;
  object-fit: contain;
  user-select: none;
}
.modal-gallery__video {
  width: auto;
  height: 85%;
  object-fit: contain;
  display: none;
  user-select: none;
}
.modal-gallery__close {
  position: absolute;
  top: var(--side-gap);
  left: 50%;
  transform: translateX(-50%);
  color: #e9e8e8;
  font-size: 16rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 10000;
  transition: opacity 0.2s;
  padding: 4px 10px;
}
.modal-gallery__counter {
  position: absolute;
  bottom: var(--side-gap);
  left: 50%;
  transform: translateX(-50%);
  color: #e9e8e8;
  font-size: 16rem;
  font-weight: 600;
  color: #e9e8e8;
  pointer-events: none;
}
.modal-gallery__prev, .modal-gallery__next {
  position: absolute;
  top: 0;
  height: 90vh;
  width: 45%;
  color: #e9e8e8;
  cursor: pointer;
  font-size: 16rem;
  font-weight: 600;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  z-index: 10000;
  padding: var(--side-gap);
  -webkit-tap-highlight-color: transparent;
}
.modal-gallery__prev span, .modal-gallery__next span {
  transition: transform 0.3s;
}
.modal-gallery__prev {
  left: 0;
  justify-content: flex-start;
}
.modal-gallery__next {
  right: 0;
  justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .modal-gallery__prev, .modal-gallery__next {
    top: unset;
    bottom: 0;
    align-items: flex-end;
  }
  .modal-gallery__prev:hover span, .modal-gallery__next:hover span {
    transform: translate(0);
  }
}
