.hero {
  padding: 4rem 0 12rem 0;
  position: relative;
  background-image: url("../img/blob-yellow-desktop.svg"), url("../img/blob-blue-desktop.svg"), url("../img/blob-orange-desktop.svg");
  background-position: 0% 100px, 0% 200px, 0% -50px;
  background-size: 12% auto, 33% auto, 50% auto;
}
@media (max-width: 800px) {
  .hero {
    background: none;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.hero .wrapper {
  display: flex;
  align-items: center;
  gap: 0 80px;
  position: relative;
  max-width: 1350px;
}
@media (max-width: 800px) {
  .hero .wrapper {
    flex-direction: column;
  }
}
.hero-animation {
  flex: 1 1 350px;
  max-width: 538px;
}
.hero-animation-content {
  margin-bottom: 2rem;
}
.hero-animation-content canvas {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 800px) {
  .hero-animation {
    background-image: url("../img/blob-yellow-mobile.svg"), url("../img/blob-orange-mobile.svg"), url("../img/blob-blue-mobile.svg");
    background-size: 75% auto, 93% auto, 100% auto;
    background-position: 25% 50%, center top, center 32%;
  }
}
.hero-text {
  flex: 1 1 500px;
}
@media (max-width: 800px) {
  .hero-text {
    text-align: center;
  }
}
.hero-text h1 {
  color: var(--orange-900);
  font-size: var(--step-7);
  margin: 0;
}
.hero-text p {
  margin-top: 2.325rem;
  color: var(--orange-800);
  font-size: var(--step-3);
}
.hero-text-gallery {
  margin: 8rem 0 0;
  position: relative;
}
.hero-text-gallery ul {
  gap: 40px;
}
@media (max-width: 800px) {
  .hero-text-gallery {
    margin-top: 0;
  }
}
.hero-text-gallery::after, .hero-text-gallery::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 60px;
  z-index: 2;
}
.hero-text-gallery::before {
  left: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 35%);
}
.hero-text-gallery::after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 32.8%);
}
.hero-text-gallery img {
  height: 34px;
  width: auto;
  filter: grayscale(1);
}
.hero .g2badge--mobile {
  display: block;
  margin: 2rem auto;
  max-width: 70%;
}
@media (min-width: 801px) {
  .hero .g2badge--mobile {
    display: none;
  }
}
.hero .g2badge--desktop {
  margin-top: 2rem;
  max-width: 90%;
  display: block;
}
@media (max-width: 800px) {
  .hero .g2badge--desktop {
    display: none;
  }
}
