.hero {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}



.hero::after{
  content: '';
  background: radial-gradient(circle, rgba(49, 58, 71, 0.534) 0%, rgba(49, 58, 71, 0.67) 100%);
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
}
.hero__bg {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.hero__container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__item {
  max-width: 640px;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.hero__item_margin {
    margin-bottom: 50px;
}
.hero__data {
  color: var(--color-white);
  margin-bottom: 16px;
}
.hero__title {
  font-size: 48px;
  color: var(--color-white);
  margin-bottom: 32px;
  line-height: 1.3;
  text-align: center;
  text-transform: capitalize;
}


/*  настройка для страниц сайта  */
.hero_page  {
  height: auto;

}
.hero_page .hero__title {
    margin-bottom: 24px;
}

/*  настройка для страниц сайта  */



@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
  }
}