.wc-home-bannerAnimation {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
}

.wc-home-bannerAnimation__container {
  display: flex;
  align-items: center;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1062px;
  width: 100%;
  /* z-index: 5; */
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
}

.wc-home-bannerAnimation__container h1 {
  font-size: 72px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 75px;
}

.wc-home-bannerAnimation__container h2 {
  font-size: 72px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 75px;

  strong {
    font-weight: 700;
  }
}

.wc-home-bannerAnimation__container p {
  max-width: 95%;
  margin-top: 101px;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  text-align: center;

  strong {
    font-weight: 700;
  }
}

.wc-home-bannerAnimation--buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
  position: relative;
  z-index: 5;
}



.wc-home-button-width-big {
  max-width: 461px;
  width: fit-content;
}

.wc-home-button-width-small {
  max-width: 331px;
  width: fit-content;
}

.wc-home-bannerAnimation__buttonBottom {
  position: absolute;
  bottom: calc(24px + env(safe-area-inset-bottom));
  right: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  animation: wc-banner-button-bounce 1.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes wc-banner-button-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* BACKGROUND ANIMATION */

.particle-network-animation {
  display: block;
  width: 100%;


}

.particle-network-animation::before {
  z-index: -2;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #FF0074 0.02%, #FF0024 100.02%);
  background-position: center center;
  background-size: cover;
}

.particle-network-animation canvas {
  /* top: 0; */
  bottom: 0;
  margin: auto;
  position: absolute;
  /* width: 100%;
  height: 100%;
  left: 0; */
}

.glow {
  z-index: -1;
  position: fixed;
  top: 50%;
  left: 50%;
  background-image: radial-gradient(circle closest-side, rgba(255, 255, 255, 0.025), transparent);
}

.glow-1 {
  width: 150vw;
  height: 150vh;
  margin-top: -75vh;
  margin-left: -75vw;
  animation: glow-1-move 25s linear infinite both;
}

@keyframes glow-1-move {
  from {
    transform: translate(-100%, 100%);
  }

  to {
    transform: translate(100%, -100%);
  }
}

.glow-2 {
  width: 100vw;
  height: 100vh;
  margin-top: -50vh;
  margin-left: -50vw;
  animation: glow-2-move 25s linear 8.3333333333s infinite both;
}

@keyframes glow-2-move {
  from {
    transform: translate(-100%, 0%);
  }

  to {
    transform: translate(100%, 100%);
  }
}

.glow-3 {
  width: 120vw;
  height: 120vh;
  margin-top: -60vh;
  margin-left: -60vw;
  animation: glow-3-move 25s linear 16.6666666667s infinite both;
}

@keyframes glow-3-move {
  from {
    transform: translate(100%, 100%);
  }

  to {
    transform: translate(0%, -100%);
  }
}

/* BACKGROUND ANIMATION */

.wc-home-bannerVideo video {
  width: 100%;
}

.wc-home-bannerSlider ul {
  list-style: none;
  margin: 0;
}

.wc-home-bannerSlider ul li img {
  display: block;
  width: 100%;
}

.wc-home-bannerSlider ul li img {
  display: block;
  width: 100%;
}

@media (max-width: 1000px) {
  .wc-home-bannerAnimation {
    padding: 0 10px;
  }

  .wc-home-bannerAnimation__buttonBottom {
    bottom: calc(34px + env(safe-area-inset-bottom, 0px));
  }

  .wc-home-button-width-small,
  .wc-home-button-width-big {
    max-width: 100%;
  }

  .wc-home-bannerAnimation__container h1,
  .wc-home-bannerAnimation__container h2 {
    font-size: 40px;
    line-height: 41px;
  }

  .wc-home-bannerAnimation__container p {
    width: 100%;
    margin-top: 24px;
    font-size: 16px;
    margin-bottom: 40px;
  }

  .wc-home-bannerAnimation--buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

}