.hero {
  position: relative;
  background-image: url(/img/hero/hero_mb.jpg);
  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__pre-title,
.hero__subtitle {
  font-size: 16px
}

.hero__title span {
  color: var(--accent-bg)
}

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

.hero__btn-launch {
  background: 0 0;
  gap: 10px;
  align-items: center
}

.hero__btn-launch .hero__btn-launch-link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2
}

.hero__btn-launch-play {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  max-width: 46px;
  max-height: 46px;
  background-color: #e41f2957;
  border: 1px solid var(--accent-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s, background-color .4s;
  -webkit-transition: transform .4s, background-color .4s;
  -moz-transition: transform .4s, background-color .4s;
  -ms-transition: transform .4s, background-color .4s;
  -o-transition: transform .4s, background-color .4s
}

.hero__btn-launch-triangle {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transform: translateX(1.5px)
}

.hero__btn-launch-triangle svg {
  display: block
}

.hero__btn-launch span {
  font-size: 16px;
  font-family: var(--semibold)
}

@media (hover:hover) {
  .hero__btn-launch:hover .hero__btn-launch-play {
    background-color: #e41f29ac;
    transform: scale(1.07);
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    -ms-transform: scale(1.07);
    -o-transform: scale(1.07)
  }
}

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

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

  .hero__info {
    max-width: 500px
  }

  .hero__info-btns {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: start;
    gap: 30px;
    flex-wrap: wrap
  }
}

@media (min-width:1200px) {
  .hero__info {
    max-width: 800px
  }
}

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

  .hero__title {
    line-height: 130%
  }

  .hero__pre-title,
  .hero__subtitle {
    font-size: 18px
  }
}