.wrapper,
.content {
  position: relative;
  width: 100%;
  z-index: 1;
}

.content {
  overflow-x: hidden;
}

.content .section.hero {
  position: relative;
  width: 100vw;
  max-height: 100vh;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
}

.intro-txt {
  z-index: 4;
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translateX(100%) translateY(-50%);
  font-size: 1dvh;
}

.header-word {
  font-size: clamp(22px, 4dvw, 120px);
  font-weight: 900;
  color: #E2E2E2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  text-align: center;
}

.explode span {
  display: inline-block;
  opacity: 1;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2dvh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 4;
  color: white;
  font-family: 'Futura', sans-serif;
  opacity: 0;
}

#logo-img {
  height: 12dvh;
  width: auto;
  display: block;
}

.image-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  perspective: 500px;
  overflow: hidden;
  z-index: 5;
}

.image-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  object-fit: cover;
  object-position: center center;
  z-index: 3;
}

/* Nav */
nav {
  z-index: 99;
  width: 100%;
  height: 45px;
  background-color: #F2F2F2;
  color: #004B9A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 20px;
}

nav ul {
  display: flex;
}

/* Lightning */
.layer {
  position: absolute;
  top: 0;
  left: 0;
  height: 120%;
  width: 100vw;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.lightning-svg {
  position: absolute;
  width: 150px;
  height: 300px;
  z-index: 2;
  pointer-events: none;
}

.lightning-svg path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.327)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.301));
  z-index: 3;
  will-change: transform;

}

.background-layer {
  background-image: url("/wp-content/themes/whatif/assets/images/image.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.main-bolt {
  stroke: rgba(140, 188, 247, 0.608);
  stroke-width: 1.2;
}

.branch-bolt {
  stroke: rgba(140, 188, 247, 0.608);
  stroke-width: 0.7;
}

.blue-gradient {
  background: #004a9a00;
  background: linear-gradient(0deg, rgba(0, 75, 154, 1) 0%, rgba(0, 75, 154, 0) 20%);
  z-index: 10;
  position: inherit;
  width: 100vw;
  height: 100vh;
}

#hero-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  text-align: center;
  z-index: 1;
  margin: auto;
}

#hero-title h2 {
  font-size: 1em;
  color: var(--white);
  font-weight: 100;
}

#hero-title h3 {
  font-size: 0.7em;
  color: var(--white);
  font-weight: 100;
}