.hero {
  position: relative;
  overflow: hidden;
  background: #101214;
  padding: 50px 24px 50px;
}

.hero__char {
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  height: 100%;
  max-height: 700px;
  width: auto;
  object-fit: contain;
}
.hero__char--left {
  left: 0;
}
.hero__char--right {
  right: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 30px 12px 40px;
}

.hero__logo {
  margin: 0 auto 20px;
}
.hero__logo img {
  margin: 0 auto;
}

.hero__subtitle {
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 26px;
  font-weight: 400;
}

.hero__cta {
  padding: 14px 32px;
  font-size: 13px;
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .hero__char {
    max-height: 520px;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 18px 18px 18px;
  }
  .hero__inner {
    padding-top: 0;
  }
  .hero__char {
    max-height: 320px;
  }
}

@media (max-width: 520px) {
  .hero__char--left {
    display: none;
  }
}
