#innovation-development {
  margin-top: 120px;
  margin-bottom: 120px;

  background-color: var(--stb-white);

  &>.container>.heading-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    &>p {
      max-width: 700px;
      margin-inline: auto;
    }
  }

  & .nebula-hub {
    color: var(--stb-white);


    & .nebula-hub__container {
      padding: var(--stb-space);
    }

    & .nebula-hub-heading {
      display: flex;
      gap: 12px;
      align-items: center;

      & .icon {
        display: flex;
        align-items: center;
        background-color: #fff;
        padding: 4px;
        border-radius: 4px;
      }
    }


    & .nebula-hub-content {

      &>p {
        filter: brightness(1.4);
      }

      & .nebula-hub-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      & .nebula-hub-item {
        display: flex;
        gap: 24px;
        align-items: center;
        margin-bottom: 24px;

        & .item-icon {
          border: 1px solid var(--stb-blue);
          border-radius: 50%;
          width: 24px !important;
          height: 24px !important;

          display: flex;
          align-items: center;
          justify-content: center;

          & svg {
            width: 16px !important;

            & .stroke {
              color: var(--stb-blue);
              stroke-width: 3px;
            }
          }
        }
      }
    }

    & .nebula-hub-illustration {
      position: relative;

      & img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

  }
}