.hero {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 48px;
  gap: 56px;
  isolation: isolate;
  position: relative;
  width: 100%;
  min-height: 402px;
  background: var(--panel);
  border: 1px solid #A8A8A8;
  border-radius: 12px;
  margin-bottom: 24px;
  overflow: hidden;
}

.heroLeft {
  max-width: 720px;
  z-index: 1;
}

.heroTitle {
  margin: 0 0 10px 0;
  font-size: 60px;
  font-weight: 700;
  background: linear-gradient(90deg, #E31937 0%, #A82465 60%, #5236AB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heroDesc {
  margin: 0 0 16px 0;
  font-size: 18px;
  line-height: 1.45;
  max-width: 70ch;
}

.hero-patterns {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  max-width: 100%;
  height: auto;
  z-index: 0;
  opacity: 0.9;
}

.sectionContentContainer {
  margin-top: 1.5rem;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px;
}

.sectionContentNav {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: start;
  list-style-type: none;
}

.sectionContentItem {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0px solid #5236AB;
  transition: 0.2s;
}

.sectionContentItem:hover {
  border-bottom: 4px solid #5236AB;
  color: #5236AB;
}

.sectionContentItem a {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
  width: 100%;
  cursor: pointer;
}

.item-selected {
  color: #5236AB;
  border-bottom: 4px solid #5236AB;
}

.section-placeholder {
  margin: auto;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-placeholder h1 {
  background: linear-gradient(90deg, #E1002A 0%, #5237ac 100%);
  background-clip: text;
  color: transparent;
}

.contentHeader {
  padding: 18px;
}

.contentHeader h1 {
  padding: 0px;
  margin: 0px;
  font-weight: bold;
  font-size: medium;
  color: #ef4444;
}

.contentHeader h2 {
  padding: 0px;
  margin: 0px;
  font-size: xx-large;
  font-weight: 500;
}

.contentHeader p {
  margin-top: 1rem;
  font-size: medium;
}

@media (max-width: 720px) {
  .sectionContentNav {
    flex-direction: column;
    align-items: start;
  }
  .sectionContentItem {
    width: 100%;
    text-align: start;
  }
}
html.theme-dark .sectionContentItem {
  border: 0px solid #9E83F5;
}

html.theme-dark .sectionContentItem:hover {
  border-bottom: 4px solid #9E83F5;
  color: #9E83F5;
}

html.theme-dark .item-selected {
  border-bottom: 4px solid #9E83F5;
  color: #9E83F5;
}

/*# sourceMappingURL=ui.css.map */