.hero.home {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.ccontainer {
  height: 100%;
  position: relative;
}
section.dark.home {
  padding-top: 0 !important;
}

.hero.home h1 {
  margin-top: 4vh !important;
  position: relative;
  z-index: 2;
}
.info {
  width: 50%;
  padding: inherit;
  padding-bottom: 0;
  position: absolute;
  bottom: 5vh;
  right: 0;
  z-index: 2;
}
.info div {
  display: flex;
  flex-direction: column;
  gap: var(--spacer-xs);
}

.info p {
  font-weight: 600;
}

.parallax-layer,
.ellipse-blue {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  will-change: transform;
  pointer-events: none;
  z-index: 1;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
}

.ellipse-blue {
  background: var(--blue);
  width: 30rem;
  height: 30rem;
  top: -20vh;
  left: -20vh;
  transform: translateY(calc(-1 * var(--scrollY, 0px) * 0.3));
  filter: blur(0);
}

/* Yellow ellipse scrolls slower */
.ellipse-yellow {
  background: var(--yellow);
  width: 200px;
  height: 200px;
  top: 57vh;
  left: 10vw;
  transform: translateY(calc(-1 * var(--scrollY, 0px) * 0.3));
}

/* Orange ellipse scrolls slightly faster */
.ellipse-orange {
  background: var(--red);
  width: 150px;
  height: 150px;
  top: 40vh;
  left: 60vw;
  transform: translateY(calc(-1 * var(--scrollY, 0px) * 0.5));
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .hero.home {
    height: fit-content;

    .ccontainer {
      display: flex;
      flex-direction: column;

      .info,
      h1 {
        position: static;
      }

      .info {
        width: 100%;
        margin-top: var(--spacer-xs);
        left: 0;
        top: 0;
        padding: 0 !important;
      }
    }
  }
  .hero.home h1 {
    margin-top: unset !important;
  }

  .ellipse-blue {
    left: -10vh;
    top: -20vh;
    width: 15rem;
    height: 15rem;
  }

  .ellipse-orange,
  .ellipse-yellow {
    display: none;
  }
}
