a {
  text-decoration: none;
}

.textAnimationClass {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.textAnimationClassNav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.textAnimationClassContainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  opacity: 0;
}

.absolute {
  position: absolute;
}

/* Fonts */
@font-face {
  font-family: EurostileExtd;
  src: url("./fonts/Eurostile-Extended-Black.woff");
}
@font-face {
  font-family: Jim;
  src: url("./fonts/deadjim.woff");
}
@font-face {
  font-family: Inter;
  src: url("./fonts/Inter-VariableFont_opsz,wght.ttf");
}
/* No Select */
.noselect,
img {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

.invisible {
  opacity: 0 !important;
  pointer-events: none !important;
}

* {
  -webkit-tap-highlight-color: transparent;
}

*::-moz-selection {
  background-color: transparent;
  text-shadow: none;
}

*::selection {
  background-color: transparent;
  text-shadow: none;
}

/* width */
/* Track */
/* Handle */
/* Defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  width: 100%;
  height: 100svh;
  overflow-x: hidden;
  overflow-y: scroll;
  /* cursor: none; */
  overscroll-behavior-y: contain;
  background-color: black;
}

body {
  z-index: 100;
  box-sizing: border-box;
  width: 100%;
  font-size: 10px;
}

main {
  position: relative;
  z-index: 1;
}

.testSection {
  position: relative;
  width: 100%;
  height: 100vh;
}

.panelSection {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 2rem;
}

.panelSectionOverflow {
  position: relative;
  width: 100%;
  height: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  gap: 2rem;
}

.panelSectionContainer {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.panelSectionContainerFade {
  position: absolute;
  width: 200%;
  height: 100%;
  z-index: 1;
  -webkit-backdrop-filter: brightness(1);
          backdrop-filter: brightness(1);
  background-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0), black);
  pointer-events: none;
}

.panelSectionContainerVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  pointer-events: auto;
  cursor: pointer;
}

.panelSectionContainerVideoAsset {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
}

.vimeoVideo {
  position: absolute;
  height: 100%;
  width: 10000%;
}

.panelSectionContainerText {
  width: 100%;
  height: 40%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding-block: 2rem;
  padding-inline: 20%;
  gap: 3rem;
  pointer-events: none;
  z-index: 2;
}

.panelSectionContainerTextTitle {
  color: #ffffff;
  font-size: 3rem;
  text-align: center;
  width: 100%;
  font-family: Jim;
}

.panelSectionContainerTextSubtitle {
  color: #ffffff;
  font-size: 2.4rem;
  text-align: center;
  width: 100%;
  font-family: Inter;
}

/* Responsive */
@media screen and (max-width: 1800px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 8px;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 7px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 7px;
  }
}
@media screen and (max-width: 765px) {
  html {
    font-size: 6px;
  }
  .panelSectionOverflow {
    position: relative;
    width: 100%;
    height: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 2rem;
    flex-direction: column;
  }
  .panelSectionContainerVideoAsset {
    width: 200%;
  }
  .vimeoVideo {
    position: absolute;
    height: 200%;
    width: 10000%;
  }
  .panelSectionContainerText {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    padding-block: 2rem;
    padding-inline: 2rem;
    gap: 2rem;
    pointer-events: none;
    z-index: 2;
  }
  .panelSectionContainerTextTitle {
    color: #ffffff;
    font-size: 2rem;
    text-align: right;
    width: 100%;
  }
  .panelSectionContainerTextSubtitle {
    color: #ffffff;
    font-size: 1.6rem;
    text-align: right;
    width: 100%;
  }
}/*# sourceMappingURL=panelSection.css.map */