/* === Hero home === */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-shapes-widget {
  position: absolute !important;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1270px;
  margin: 0 auto;
}

.hero-shape--left svg {
  --w: clamp(0px, calc(((100vw - 1270px) / 2 - 40px) * 3.0285), 851px);
  position: absolute;
  width: var(--w);
  height: calc(var(--w) * 1.1998);
  left: calc(var(--w) * -0.6698);
  top: calc(var(--w) * -0.5417);
  pointer-events: none;
  z-index: 0;
}

.hero-shape--left path {
  stroke: url(#paintLeft) !important;
  stroke-width: 4.47 !important;
  fill: none !important;
}

.hero-shape--right svg {
  --w: clamp(0px, calc(((100vw - 1270px) / 2 - 40px) * 3.6507), 763px);
  position: absolute;
  width: var(--w);
  height: calc(var(--w) * 1.2005);
  right: calc(var(--w) * -0.7261);
  top: calc(var(--w) * 0.2241);
  pointer-events: none;
  z-index: 0;
}

.hero-shape--right path {
  stroke: url(#paintRight) !important;
  stroke-width: 4.98 !important;
  fill: none !important;
}

@media (max-width: 1550px) {
  .hero-shape--left svg,
  .hero-shape--right svg {
    display: none;
  }
}