* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plain Light";
  color: #fff;
  cursor: none;
}

html,
body {
  height: 100%;
  width: 100%;
}

#crsr {
  height: 2vw;
  width: 2vw;
  position: fixed;
  border-radius: 50%;
  /* background-color: white; */
  z-index: 999;
  border: 2px solid #ffffffbe;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

#loader {
  position: fixed;
  padding: 20vh 10vw;
  width: 100%;
  height: 100%;
  background-color: #0b0b0b;
  z-index: 9999;
}

.line {
  height: fit-content;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  gap: 3vw;
}

#line1-part1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}

#line1-part1 h5,
#line1-part1 h6 {
  font-size: 3vw;
  font-weight: 100;
  font-family: "silk serif";
}

#line1-part1 h5 {
  width: 5vw;
  text-align: right;
}

.line h1 {
  font-size: 6.5vw;
  text-transform: uppercase;
  font-weight: 900;
}

.line h2 {
  font-size: 6.5vw;
  text-transform: uppercase;
  font-weight: 500;
  animation-name: anime;
  /* opacity: 0; */
  animation-duration: 2.8s;
  animation-iteration-count: infinite;
}

@keyframes anime {
  0% {
    font-family: "Plain Light";
    /* -webkit-text-stroke: 2px #fff; */
    color: #fff;
    font-weight: 500;
    opacity: 1;
  }
  48% {
    font-family: "Plain Light";
    /* -webkit-text-stroke: 2px #fff; */
    color: #ffffff;
    font-weight: 500;
    opacity: 0;
  }
  50% {
    font-family: "silk serif";
    -webkit-text-stroke: 0.1px #fff;
    /* color: rgba(255, 255, 255, 0.505); */
    color: transparent;
    font-weight: 500;
    opacity: 1;
  }

  100% {
    font-family: "silk serif";
    -webkit-text-stroke: 0.1px #fff;
    color: transparent;
    font-weight: 500;
    opacity: 0;
  }
}

#main {
  position: relative;
  background-color: #0b0b0b;
}

#page1 {
  height: 100vh;
  width: 100%;
  background-color: #151515;
}

#page1 #nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.1vw 5.5vw;
}

#nav-part2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3vw;
}

#nav-part2 h4 {
  font-size: 0.9vw;
  font-weight: 550;
  font-family: "Plain", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  display: inline-block;
  margin: 0 20px;
  transition: transform 0.2s ease-out;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.hero {
  width: 72%;
  margin-left: 27%;
  height: fit-content;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999;
}

.hero:nth-child(2) {
  margin-top: 18vh;
}

.hero h1 {
  font-size: 7.2vw;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 7.2vw;
}

.hero h2 {
  font-size: 7.2vw;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 7.2vw;
  border-bottom: 0.5vw solid #fff;
}

.hero h2:hover {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
  font-weight: 500;
  border-bottom: 0.5vw solid #ffffff00;
}

#page2 {
  height: 100vh;
  width: 100%;
  padding-top: 17vh;
  position: relative;
}

#video-container {
  position: relative;
  width: 71vw;
  height: 66vh;
  left: 28%;
  background-color: #151515;
  overflow: hidden;
}

#video-container img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}

#video-container video {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}