.header-hero-wrapper {
  border-radius: 0 0 50px 50px;
}

.hero-banner__container {
  display: flex;
  width: 535px;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
}

.hero-banner__container h1 {
  color: var(--color-secondary);
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

:not(.home) .hero-banner__container {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  /* margin-top: 30px; */
}

.home .hero-banner__container {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 70px;
}

.hero-home {
  height: 700px;
}

.hero-other {
  height: 450px;
}

.tag-hero-banner {
  position: absolute;
  top: -15px;
  left: 40px;
  display: inline-flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: var(--color-secondary);
}

.tag-hero-banner p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  background: #704AD9;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-banner__subtitle {
  color: white;
}

@media screen and (max-width: 768px) {
  .hero-banner__container {
    width: auto;
    padding: 30px 20px 20px 20px;
  }

  .tag-hero-banner {
    position: absolute;
    top: -15px;
    left: 20px;
  }

  .hero-banner__container h1 {
    font-size: 40px;
  }

  .hero-home {
    height: 530px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-banner__container {
    margin-bottom: 25px;
  }

  .hero-other {
    height: 450px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .hero-landing {
    height: 550px;
  }
}
