@keyframes trail {
  0% {
    stroke-dashoffset: 60;
    stroke: white; }
  30% {
    stroke-dashoffset: 0;
    stroke: red; }
  50% {
    stroke: white; }
  100% { } }

@keyframes blinker {
  50% {
    opacity: 0; } }

@keyframes bobbing {
  0% {
    transform: translateY(-1.5vh) translateZ(0); }
  50% {
    transform: translateY(1.5vh) translateZ(0);
    opacity: 0.25; }
  100% {
    transform: translateY(-1.5vh) translateZ(0); } }

@keyframes right-in {
  0% {
    opacity: 1; }
  100% {
    filter: blur(0px);
    transform: translateX(0);
    opacity: 0; } }

@keyframes right-out {
  0% {
    transform: translateX(0);
    filter: blur(0px);
    opacity: 1; }
  100% {
    transform: translateX(50vw);
    filter: blur(10px);
    opacity: 0; } }

@keyframes up-n-out {
  0% {
    transform: translateY(0);
    opacity: 1; }
  100% {
    transform: translateY(-50vh);
    opacity: 0; } }

@keyframes people-rline {
  0% {
    width: calc(100% - 60px);
    transform: translateX(-25%) scaleX(1) translateZ(0); }
  75% {
    transform: translateX(60%) scaleX(0) translateZ(0);
    background-position: -100% 200px; }
  100% {
    transform: translateX(-25%) scaleX(0) translateZ(0); } }

@keyframes button-rline {
  0% {
    transform: translateX(0) scaleX(1) translateZ(0); }
  25% {
    transform: translateX(50%) scaleX(0) translateZ(0); }
  49% {
    transform: translateX(-50%) scaleX(0) translateZ(0); } }

.bline {
  position: relative; }
  .bline::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white; }
  .bline.red::after {
    background-color: #ef1535; }
  .bline:hover::after {
    animation: button-rline 1s infinite; }

@keyframes but-run {
  0% {
    transform: translateY(0) scaleY(1) translateZ(0); }
  25% {
    transform: translateY(50%) scaleY(0) translateZ(0); }
  49% {
    transform: translateY(-50%) scaleY(0) translateZ(0); } }

@keyframes glitchLoop {
  0%, 50%, 100% {
    filter: none; }
  25%, 75% {
    filter: brightness(0) saturate(100%) invert(14%) sepia(96%) saturate(4466%) hue-rotate(345deg) brightness(99%) contrast(122%); } }

.rline {
  position: relative; }
  .rline::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #010101; }
  .rline:hover::after {
    animation: but-run 1s infinite; }

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1.4; }

img, a {
  user-select: none; }

ul {
  list-style: none;
  border-spacing: 0; }

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

button {
  border: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  user-select: none;
  width: auto;
  min-width: none;
  text-decoration: none; }

::selection {
  background: rgba(239, 21, 53, 0.25);
  transition-duration: 0.3s; }

nav {
  position: fixed;
  z-index: 7;
  top: 5vh;
  display: flex;
  width: calc(90vw - 40px);
  left: calc(5vw - 20px);
  height: auto;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-radius: 10px;
  transition-duration: 0.3s; }
  nav.case, nav.modal {
    background-color: #0f0f0feb;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    -moz-backdrop-filter: blur(18px);
    -ms-backdrop-filter: blur(18px);
    z-index: 99; }
    nav.case > button, nav.modal > button {
      display: flex;
      transition-duration: 0.3s; }
      nav.case > button svg, nav.case > button path, nav.modal > button svg, nav.modal > button path {
        transition-duration: 0.3s; }
      nav.case > button:hover, nav.modal > button:hover {
        color: #ef1535; }
        nav.case > button:hover svg, nav.modal > button:hover svg {
          transform: translateX(-5px); }
        nav.case > button:hover svg path, nav.modal > button:hover svg path {
          stroke: #ef1535; }
    nav.case > div, nav.modal > div {
      display: none; }
  nav.blurb {
    background-color: #0f0f0feb;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    -moz-backdrop-filter: blur(18px);
    -ms-backdrop-filter: blur(18px); }
  nav.blur {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    -moz-backdrop-filter: blur(18px);
    -ms-backdrop-filter: blur(18px); }
  nav > button {
    display: none;
    color: white;
    font-size: 18px;
    align-items: center;
    cursor: pointer; }
    nav > button svg {
      height: 22px;
      padding-right: 5px; }
  nav .logo {
    cursor: pointer;
    transition-duration: 0.5s;
    position: relative;
    top: 6px; }
    nav .logo:after {
      content: '';
      position: absolute;
      top: -6px;
      left: 0;
      width: 75%;
      height: 1px;
      background-color: white; }
    nav .logo:hover {
      filter: brightness(0) saturate(100%) invert(14%) sepia(96%) saturate(4466%) hue-rotate(345deg) brightness(99%) contrast(122%); }
      nav .logo:hover::after {
        width: 100%;
        animation: button-rline 1s infinite; }
    nav .logo img {
      height: 26px; }
  nav > div.in a {
    opacity: 0.5; }
  nav > div a {
    font-size: 1.15em;
    cursor: pointer;
    text-transform: capitalize;
    margin-left: 40px;
    padding: 20px 0;
    position: relative;
    transition-duration: 0.3s; }
    nav > div a:after {
      content: '';
      opacity: 0;
      position: absolute;
      left: calc(50% - 2.5px);
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: white;
      bottom: 10px;
      transition-duration: 0.3s; }
    nav > div a:hover {
      opacity: 1; }
      nav > div a:hover:after {
        opacity: 0.4;
        bottom: 5px; }
    nav > div a.active:after {
      opacity: 1; }
  @media screen and (max-width: 550px) {
    nav {
      top: 0;
      width: calc(95vw - 40px);
      left: calc(2.5vw - 20px); }
      nav img {
        height: 22px; }
      nav > div a {
        font-size: 1em;
        margin-left: 24px; } }

.up-out {
  animation: up-n-out 0.5s ease-in-out forwards; }

.side-out {
  animation: right-out 0.5s; }

.side-in {
  animation: right-in 0.5s; }

.anchor {
  position: fixed;
  top: calc(100vh - 100px);
  width: 100%;
  left: 0;
  pointer-events: all !important;
  z-index: 4;
  transition-duration: 0.5s;
  cursor: pointer; }
  .anchor:hover {
    filter: brightness(0) saturate(100%) invert(14%) sepia(96%) saturate(4466%) hue-rotate(345deg) brightness(99%) contrast(122%); }
  .anchor span {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 11px;
    transform: translateY(-28px);
    opacity: 0; }
  .anchor.shift {
    opacity: 1;
    top: 40vh; }
    .anchor.shift span {
      opacity: 1; }
  .anchor .drop {
    position: absolute;
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
    background-color: transparent;
    opacity: 1;
    border: none;
    cursor: pointer; }
    .anchor .drop::after {
      position: absolute;
      content: '';
      height: 30px;
      width: 1px;
      background-color: white;
      left: calc(50% - 1px);
      bottom: calc( 50% + 1px/2);
      z-index: 4;
      animation: but-run 1s infinite; }

main {
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 5vw;
  height: 100vh;
  display: flex;
  align-items: center;
  overscroll-behavior-block: none;
  overscroll-behavior: none; }
  main.home {
    left: calc(5vw + 20px); }
  main h1 {
    font-size: 7rem;
    font-weight: bold;
    line-height: 1.2;
    width: 60%;
    max-width: 1800px;
    margin: 0; }

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  user-drag: none;
  -webkit-user-drag: none; }
