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

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

.video-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: width 0.5s ease-in-out;
}

.video-wrapper:nth-child(1) {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
  transition: all 0.4s ease-in-out;
}

.video-wrapper {
  position: absolute;
  width: 100%;
}

.video-wrapper:nth-child(2) {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.bg-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.dz__lp-banner {
  position: relative;
  height: 100vh;
  background-color: #1e1e1e;
}

.dz__hero-nav {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  z-index: 3;
}

.dz__hero-container {
  position: relative;
  height: 100%;
}

.dz__hero-media {
  position: absolute;
  width: 100%;
}

.dz__hero-media:nth-child(1) {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  transition: all 0.4s ease-in-out;
}

.dz__hero-media:nth-child(2) {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  transition: all 0.4s ease-in-out;
}

.dz__hero-media.expand:nth-child(1) {
  clip-path: polygon(0 0, 80% 0, 80% 100%, 0 100%);
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.dz__hero-media.expand:nth-child(2) {
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%);
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.dz__hero-nav-link {
  height: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 32px 32px;
}

.dz__hero-nav-content {
  text-align: center;
}

.dz__hero-heading h6 {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--bs-body-bg);
  margin-bottom: 0;
}

.dz__hero-heading h3 {
  font-size: 38px;
  color: var(--bs-body-bg);
  font-weight: 700;
}

.dz__hero-heading span {
  writing-mode: sideways-lr;
  font-size: 16px;
  color: var(--bs-body-bg);
  font-weight: 600;
  padding-top: 100px;
  position: relative;
}

.dz__hero-heading span::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 80px;
  background-color: var(--bs-body-bg);
  top: 10px;
  left: 55%;
  transform: translateX(-50%);
}
.dz__hero-nav-clean .dz__hero-heading span::before {
  background-color: #5cff00;
}

.dz__hero-nav-fossil .dz__hero-heading span::before {
  background-color: #ff1800;
}

.dz__hero-media::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  transition: all 0.6s ease-in-out;
  bottom: -100%;
}

.dz__hero-media.expand::before {
  height: 100%;
  transition: all 0.6s ease-in-out;
  bottom: 0;
}

.dz__hero-media-green::before {
  background-image: linear-gradient(180deg, #5cca1200 0%, #436a29ad 100%);
}

.dz__hero-media-fossil::before {
  background-image: linear-gradient(180deg, #4a030300 0%, #4a0303ad 100%);
}

.dz__hero-nav-item:not(.active) .dz__hero-nav-content {
  display: none;
}

.dz__hero-nav-item.active .dz__hero-nav-title {
  display: none;
}

.dz__hero-nav-item {
  text-align: center;
}

.dz__hero-nav-item.active {
  max-width: 40%;
}

.dz__hero-nav-title {
  position: relative;
  display: flex;
  gap: 25px;
  align-items: center;
}

.dz__hero-nav-clean .dz__hero-nav-title  {
  padding-right: 70px;
}

.dz__hero-nav-clean .dz__hero-nav-title .arrow {
  transform: rotate(90deg) translateY(-50%);
  cursor: pointer;
  margin: 17px 10px 15px 10px;
}

.dz__hero-nav-fossil .dz__hero-nav-title {
  padding-left: 70px;
}

.dz__hero-nav-fossil .dz__hero-nav-title .arrow {
  transform: rotate(-90deg) translateY(-50%);
  cursor: pointer;
  margin: 15px 10px 17px 10px;
}

.dz__hero-nav-title .arrow span {
  display: block;
  width: 12px;
  height: 12px;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
  transform: rotate(45deg);
  margin: 0;
  animation: arrow-animate 2s infinite;
}

.dz__hero-nav-clean .arrow span {
  border-color: #5cff00;
}
.dz__hero-nav-fossil .arrow span {
  border-color: #ff1800;
}

.dz__hero-nav-title .arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.dz__hero-nav-title .arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes arrow-animate {
  0% {
      opacity: 0;
      transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      transform: rotate(45deg) translate(20px, 20px);
  }
}
@keyframes counter-arrow-animate {
  0% {
      opacity: 0;
      transform: rotate(-45deg) translate(20px, 20px);
  }
  50% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      transform: rotate(-45deg) translate(-20px, -20px);
  }
}

.dz__hero-nav-title h2 {
  font-size: 23px;
  font-weight: 700;
  color: var(--bs-body-bg);
}

.dz__hero-title h1 {
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -6px;
  color: var(--bs-body-bg);
}

.dz__hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.dz__hero-title img {
  height: 100px;
}

.dz__hero-container {
  position: relative;
  height: 100%;
  clip-path: polygon(40% 35%, 60% 35%, 60% 65%, 40% 65%);
}

.dz__vertical-lines {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.vertical-lines__line {
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #ffffff12;
  z-index: 1;
  top: 0;
}

.vertical-lines__line:nth-child(1) {
  left: 80%;
  transform: translateX(25%);
}

.vertical-lines__line:nth-child(2) {
  left: 50%;
  transform: translateX(-50%);
}

.vertical-lines__line:nth-child(3) {
  left: 20%;
  transform: translateX(-75%);
}

.dz__hero-title {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.dz__hero-nav {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.dz__hero-media::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  transition: all 0.6s ease-in-out;
  bottom: 0;
  background-color: #00000038;
  z-index: 1;
  left: 0;
}

@media (max-width: 991px) {
  .dz__lp-banner {height: 100dvh;}
  .dz__hero-container {height: 100dvh;}
  .dz__hero-nav {flex-direction: column; height: 100dvh;}
  .dz__hero-nav-item {flex: 0 0 auto;height: 50%;}
  .dz__hero-nav-link {padding: 20px 15px;align-items: center;}
  .dz__hero-nav-title {display: none;}
  .dz__hero-nav-item:not(.active) .dz__hero-nav-content {display: block;}
  .dz__hero-heading h6 {font-size: 14px;}
  .dz__hero-heading h3 {font-size: 22px;}
  .dz__hero-heading span::before {width: 50px;height: 1px;top: unset;left: 0;transform: unset;bottom: 0;}
  .dz__hero-media:nth-child(1) {clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);}
  .dz__hero-media:nth-child(2) {clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);}
  .dz__hero-media::after {background-color: #0000007a;}
  .dz__hero-heading span {writing-mode: initial;font-size: 15px;padding-top: 0;}
  .dz__hero-title img {height: 75px;}
  .bg-video {height: 100dvh;}
  .vertical-lines__line:nth-child(1) {top: 80%;transform: translateY(25%);left: unset;}
  .vertical-lines__line:nth-child(2) {top: 50%;transform: translateY(-50%);left: unset;}
  .vertical-lines__line:nth-child(3) {top: 20%;transform: translateY(-75%);left: unset;}
  .vertical-lines__line {width: 100%;height: 1px;}
}