.hero-video-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-container,
.hero-content-wrapper {
  width: 100%;
  height: 100%;
}
.hero-content-wrapper {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-eyebrow .eyebrow-text {
  font-size: 2rem;
  color: #111;
  font-weight: 500;
}

.hero-main-title {
  font-size: 6.5rem;
  color: #000;
  font-weight: 700;
  margin: 2rem 0;
}

.hero-cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  transition: scale 0.3s ease;
}

.hero-cta-section:hover {
  scale: 1.05;
}

.hero-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: #000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  max-width: 250px;
  min-width: 100px;
  gap: 1rem;
}

.hero-cta-button i {
  color: #fff;
}

.hero-visual-content {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.animation-wrapper-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.animation-wrapper-background-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: none;
}
.animation-avtars,
.animation-clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.animation-avtars img {
  position: absolute;
  object-fit: cover;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}
.avatar1 {
  top: 10%;
  left: 5%;
  width: 90px;
}
.avatar2 {
  top: 5%;
  left: 40%;
  width: 100px;
}
.avatar3 {
  top: 30%;
  right: 5%;
  width: 110px;
}
.avatar4 {
  top: 10%;
  right: 25%;
  width: 85px;
}
.avatar5 {
  bottom: 15%;
  right: 15%;
  width: 105px;
}
.avatar6 {
  bottom: 20%;
  left: 20%;
  width: 95px;
}

.animation-clouds img {
  position: absolute;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
}
.cloud1 {
  bottom: 0%;
  right: -20%;
  width: 700px;
  filter: blur(2px);
}
.doodles {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.doodle-stars {
  position: absolute;
  top: 50%;
  left: 25%;
  width: 100px;
  height: auto;
}
.doodle-stars2 {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 100px;
  height: auto;
}
.doodle-arrow {
  position: absolute;
  top: 45%;
  left: 2%;
  transform: rotate(-120deg);
  width: 250px;
  height: auto;
}

.doodle-sparkles {
  position: absolute;
  top: 2%;
  left: 20%;
  width: 200px;
  height: auto;
}

.doodle-sparkles2 {
  position: absolute;
  top: 52%;
  right: 25%;
  width: 150px;
  height: auto;
}

@media (max-width: 768px) {
  .hero-video-banner {
    height: 400px;
  }

  .hero-main-title {
    font-size: 4rem;
  }

  .hero-cta-button {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
    max-width: 200px;
  }

  .animation-avtars img {
    width: 70px;
  }

  .animation-clouds img {
    width: 500px;
  }

  .doodle-arrow {
    width: 140px;
  }

  .doodle-stars,
  .doodle-stars2,
  .doodle-sparkles,
  .doodle-sparkles2 {
    width: 80px;
  }

  .cloud1 {
    width: 600px;
  }
}

@media (max-width: 680px) {
  .hero-video-banner {
    height: 300px;
  }

  .hero-main-title {
    font-size: 3rem;
  }

  .hero-cta-button {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
    max-width: 150px;
  }

  .animation-avtars {
    display: none;
  }

  .animation-clouds {
    display: none;
  }

  .doodles {
    display: none;
  }

}
