.hero {
  position: relative;
  background-image: url(/img/hero/hero_mb.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.hero_skin {
  content: '';
  position: absolute;
  z-index: 2
}

.hero__body,
.hero__btn-launch {
  position: relative;
  display: flex
}

.hero_skin-1 {
  inset: 0;
  background: #000;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .56) 100%)
}

.hero_skin-2 {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: #000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .56) 100%)
}

.hero_skin-3 {
  inset: 0;
  background-color: rgba(0, 0, 0, .4)
}

.hero__body {
  padding-top: 120px;
  padding-bottom: 50px;
  z-index: 3;
  min-height: 650px;
  flex-direction: column;
  justify-content: end
}

.hero__info-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px
}

.hero__title {
  text-transform: uppercase;
  line-height: 120%
}


.hero__info-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap
}



@media (min-width:768px) {
  .hero {
    background-image: url(/img/hero/hero_pc.jpeg)
  }

  .hero__body {
    padding-top: 100px;
    padding-bottom: 100px;
    justify-content: center
  }

  .hero__info {
    max-width: 500px
  }
}

@media (min-width:1200px) {
  .hero__info {
    max-width: 700px
  }
  .hero__info-btns {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 15px;
  flex-wrap: wrap
}
}

@media (min-width:1350px) {
  .hero__body {
    min-height: 100svh
  }
}