#hero {
  background-image: var(--bg-img);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;

  & .gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(238, 238, 238, 1) 0%,
        rgba(238, 238, 238, 0.4) 50%,
        rgba(238, 238, 238, 1) 100%);
    z-index: 0;
  }
}

#hero .container {
  padding-top: clamp(20px, 5vh, 40px);
  padding-bottom: clamp(20px, 5vh, 40px);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  z-index: 100;
  position: relative;

  & .eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    border: 1px solid var(--stb-border-gray);
    border-radius: 20px;
    padding: 2px 16px;
    text-transform: uppercase;
    font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);

    &>.dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: black;
    }
  }

  & h1 {
    font-size: clamp(3.4rem, 2.2rem + 4vw, 8rem);
    line-height: 1;
    max-width: 800px;
    text-wrap: balance;

    &>.underlined-text {
      position: relative;

      &::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 12px;
        background-image: var(--stb-gradient-yellow-orange-to-pink);
        border-radius: 20px;
        filter: brightness(1.15);
      }
    }
  }

  & .text-description {
    color: var(--stb-gray);
    max-width: 800px;
    text-wrap: pretty;
  }

  & .buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  & .metrics-container {
    margin-top: 80px;
    margin-bottom: 40px;
  }
}