.hero {
  padding-top: 120px;
  padding-bottom: 25px;
  background-image: url("img/hero_bg.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero .container {
  position: relative;
}
.hero__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}
.hero__desc {
  font-size: 10px;
}
.hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(0deg, #000 5.01%, rgba(0, 0, 0, 0) 80%);
}

@media (min-width: 576px) {
  .hero {
    padding: 150px 0 50px;
  }
  .hero__title {
    font-size: 43px;
  }
}
@media (min-width: 768px) {
  .hero {
    padding-top: 170px;
  }
  .hero__title {
    font-size: 74px;
  }
  .hero__desc {
    font-size: 15px;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 170px;
    padding-bottom: 65px;
  }
  .hero .container {
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .hero__title {
    font-size: 89px;
  }
  .hero__desc {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .hero {
    padding-top: 180px;
    padding-bottom: 135px;
  }
  .hero__title {
    font-size: 110px;
  }
  .hero__desc {
    font-size: 32px;
  }
}
@media (min-width: 1921px) {
  .hero {
    height: 80vh;
  }
}