.block-hero {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  background-image: url(../../img/content/bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 30px 0px 30px;
  border-radius: 48px 48px 0px 0px;
  padding: 10px;
  position: relative;
  background-size: cover;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .block-hero {
    min-height: 65vh;
    min-height: calc(var(--vh, 1vh) * 65);
  }
}
@media screen and (max-width: 767px) {
  .block-hero {
    min-height: 65vh;
    min-height: calc(var(--vh, 1vh) * 65);
  }
}
.block-hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 188px;
  background: linear-gradient(0deg, #262626 0%, rgba(38, 38, 38, 0.99) 6.67%, rgba(37, 37, 37, 0.96) 13.33%, rgba(35, 35, 35, 0.92) 20%, rgba(33, 33, 33, 0.85) 26.67%, rgba(29, 29, 29, 0.77) 33.33%, rgba(26, 26, 26, 0.67) 40%, rgba(21, 21, 21, 0.56) 46.67%, rgba(17, 17, 17, 0.44) 53.33%, rgba(13, 13, 13, 0.33) 60%, rgba(9, 9, 9, 0.23) 66.67%, rgba(6, 6, 6, 0.15) 73.33%, rgba(3, 3, 3, 0.08) 80%, rgba(1, 1, 1, 0.04) 86.67%, rgba(0, 0, 0, 0.01) 93.33%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .block-hero {
    margin: 10px 10px 0px 10px;
    border-radius: 32px 32px 0px 0px;
  }
}
@media screen and (max-width: 767px) {
  .block-hero {
    margin: 10px 10px 0px 10px;
    border-radius: 32px 32px 0px 0px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1550px;
  padding: 190px 0;
}
@media screen and (max-width: 767px) {
  .hero-content {
    padding: 190px 0 100px;
  }
}
.hero-content_description {
  max-width: 642px;
}

.hero-logo {
  display: flex;
  gap: 8px;
  position: absolute;
  top: 66px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .hero-logo {
    top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .hero-logo {
    top: 40px;
  }
}
.hero-logo img {
  width: 50px;
  position: relative;
}
.hero-logo .hero-logo__text {
  margin-top: auto;
  margin-bottom: 4px;
  font-size: 1.3125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 90%;
  letter-spacing: -1.05px;
}

.hero-arrow {
  position: relative;
  bottom: 110px;
}