#main-content {
  display: flex;
  flex-direction: column;
  max-width: 100vw;
}

.no-sidebar #main-content {
  padding-inline-end: 0;
}

.theme-container.has-toc .page {
  padding-right: 0;
}

.vp-page-title {
  display: none;
}

.vp-breadcrumb {
  display: none;
}

.theme-container .vp-page {
  padding-inline-end: 0px;
}

body .theme-hope-content:not(.custom) {
  max-width: inherit;
  width: auto;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.mt24 {
  margin-top: 24px;
}
.mb24 {
  margin-bottom: 24px;
}

.mt40 {
  margin-top: 40px;
}
.mt80 {
  margin-top: 80px;
}
.mt140 {
  margin-top: 140px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb140 {
  margin-bottom: 140px;
}

.grid2column {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid3column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid6column {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.flex {
  display: flex;
}

.flexCenter {
  display: flex;
  align-items: center;
}

.flexCol {
  display: flex;
  flex-direction: column;
}

.flexColCenter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gp16 {
  gap: 16px;
}

.gp24 {
  gap: 24px;
}

.layout {
  width: 100%;
}

.welcomeContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 80px;
}

.banner {
  padding: 80px;
  display: flex;
  max-width: var(--max-width);
  height: 680px;
  position: relative;
  box-sizing: border-box;
}

.bannerImage {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bannerImage img {
  max-width: 768px;
  height: 624px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.5;
}

.bannerImageBg {
  border-radius: 863px;
  background: #008be7;
  filter: blur(100px);
  width: 863px;
  height: 86px;
  flex-shrink: 0;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.bannerImageBgRed {
  background: #ff71d9;
}

.bannerRow {
  height: 580px;
  max-width: var(--max-width);
  display: flex;
  padding: 80px 0;
  box-sizing: border-box;
  width: 100%;
  justify-content: space-between;
}

.bannerRow .bannerImage {
  position: static;
  transform: translate(0, 0);
}

.bannerRow .bannerImage img {
  width: 494px;
  height: 420px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 1;
}

.bannerRow .bannerImageBg {
  width: 418px;
  height: 60px;
  border-radius: 418px;
}

.flexWrap {
  display: flex;
  flex-flow: row wrap;
}

.graphGuide {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(93, 106, 245, 0.2) 0%,
      rgba(96, 109, 255, 0.166) 38.02%,
      rgba(161, 167, 230, 0.002) 100%
    ),
    #191c3c;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding: 32px;
  box-sizing: border-box;
}

/*Below was applied to hide the vue-press footer on home pgae */

.theme-hope-content {
  display: flex;
  margin: unset !important;
}

.no-sidebar .theme-hope-content {
  margin: 0 auto !important;
}

footer {
  display: none !important;
}

iframe {
  position: static;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.overflow3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  word-break: break-word;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 960px) {
  .layout {
    max-width: 90vw;
    min-width: auto;
  }
}

@media screen and (min-width: 1920px) {
  .layout {
    max-width: var(--max-width);
  }
}

@media screen and (max-width: 768px) {
  .welcomeContainer {
    padding: 0 20px;
  }

  .banner {
    padding: 80px 0;
  }
  .banner > div {
    flex-direction: column;
  }

  .bannerImage img {
    width: 100vw;
  }

  .bannerImageBg {
    width: 100%;
  }

  .flexColMobile {
    display: flex;
    flex-direction: column;
  }

  .bannerRow .bannerImage {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.5;
  }

  .bannerRow .bannerImage img {
    width: 100vw;
  }

  .bannerRow .bannerImageBg {
    display: none;
  }
}
