.wrapper {
  min-height: 100vh;
  background: linear-gradient(270deg, #191a1b 0%, #0e0f0f 100%);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
}

.hero:after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(0deg, rgba(25, 26, 27, 0) 0%, #0e0f0f 50%, #0e0f0f);
}

.hero .text {
  position: relative;
  z-index: 3;
  padding: 132px 0;
}

.hero .text h1 {
  font-size: 60px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  width: 75%;
  margin: 0 0 21px;
  color: #fff;
}

.hero .text p {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  width: 90%;
  color: #747474;
}

.hero .text .buttons {
  margin-top: 59px;
}

.hero .text .buttons a {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 18px;
  transition: all .3s;
  text-align: center;
  border-radius: 8px;
}

.hero .text .buttons .get {
  font-size: 17.6px;
  font-weight: 500;
  font-style: normal;
  line-height: 26.4px;
 /* 150% */
  text-align: center;
  color: #1d1d1d;
  border: 1px solid transparent;
  background: #fff;
  box-shadow: 2px 4px 12px 0 rgba(0, 0, 0, .25) inset, 0 4px 20px 0 rgba(255, 255, 255, .24);
}

.hero .text .buttons .get:hover {
  color: #fff;
  border-color: #fff;
  background: #1d1d1d;
}

.hero .text .buttons .more {
  font-size: 17.6px;
  font-weight: 500;
  font-style: normal;
  line-height: 26.4px;
 /* 150% */
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  background: #1d1d1d;
  box-shadow: 2px 4px 12px 0 rgba(0, 0, 0, .25) inset, 0 4px 20px 0 rgba(255, 255, 255, .24);
}

.hero .text .buttons .more:hover {
  color: #1d1d1d;
  background: #fff;
}

.hero .slider {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
}

.hero .slider .slider-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-right 110s linear infinite;
}

.hero .slider .slider-track div {
  width: 100vw;
  flex: 0 0 auto;
}

.hero .slider .slider-track div img {
  width: 100%;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@media screen and (min-width: 768px) {
  .hero .text {
    width: 370px;
    padding: 170px 0;
  }

  .hero .text h1 {
    width: 70%;
  }

  .hero .text p {
    width: 80%;
  }

  .hero .text .buttons {
    display: flex;
    gap: 10px;
  }

  .hero .text .buttons a {
    margin-bottom: 0;
  }

  .hero .slider .slider-track div {
    width: 50vw;
  }
}

@media screen and (min-width: 1024px) {
  .hero:after {
    background: linear-gradient(270deg, rgba(25, 26, 27, 0) 0%, #0e0f0f 70%);
  }

  .hero .slider {
    right: 0;
    left: auto;
    width: 80%;
    height: calc(100% - 98px);
  }

  .hero .slider .slider-track {
    height: 100%;
  }

  .hero .slider .slider-track div {
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
  }
}

@media screen and (min-width: 1280px) {
  .hero .slider .slider-track div img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .hero .text {
    padding: 162px 0 70px;
  }

  .hero .text h1 {
    font-size: 88px;
    line-height: normal;
    width: 100%;
  }

  .hero .text .buttons {
    gap: 20px;
  }
}

.wrapper {
  padding-bottom: 0 !important;
}
