.hero-home {
  margin-top: -98px !important;
  padding: 98px 16px 0 16px;
  border-bottom: 1px solid var(--grey);
  position: relative;
}

@media screen and (min-width: 1025px) {
  .hero-home {
    margin-top: -112px !important;
    padding: 112px 0px 0 0px;
  }
}

.hero-home .container {
  padding: 64px 16px 180px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 1025px) {
  .hero-home .container {
    padding: 120px 80px 180px 80px;
  }
}

.hero-home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(39, 45, 48, 0) 71.35%, #272d30 100%),
    linear-gradient(
      0deg,
      rgba(39, 45, 48, 0.88) 0%,
      rgba(39, 45, 48, 0.88) 100%
    );
  background-blend-mode: normal, normal, luminosity;
  z-index: -1;
}

.hero-home video {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -2;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.hero-home h1,
.hero-home p {
  z-index: 1;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .hero-home h1 {
    max-width: 80%;
  }
}

@media screen and (min-width: 1280px) {
  .hero-home h1 {
    max-width: 60%;
  }
}

@media screen and (min-width: 1440px) {
  .hero-home h1 {
    max-width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .hero-home p {
    max-width: 50%;
  }
}

.hero-home span {
  color: var(--yellow);
  font-family: var(--bebas);
  font-size: 2.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: -24px;
}

.hero-home p {
  font-family: var(--lato);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

@media screen and (min-width: 768px) {
  .hero-home p {
    align-self: flex-end;
  }
}

.hero-home .btn {
  z-index: 1;
}

@media screen and (max-width: 769px) {
  .hero-home .has-divider::after {
    width: 100%;
    left: 0;
    transform: none;
  }
}

.hero-home .line0 {
  background: var(--yellow);
  height: 96px;
  width: 80px;
  position: absolute;
  left: -16px;
  bottom: -1px;
  z-index: 2;
}

@media screen and (min-width: 1025px) {
  .hero-home .line0 {
    left: 0;
  }
}

@media screen and (min-width: 1280px) {
  .hero-home .line0 {
    width: 160px;
  }
}

.hero-home .line0::before {
  content: "Scroll";
  color: white;
  position: absolute;
  top: -24px;
  left: 50%;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.84px;
  transform: translateY(-100%) rotate(-0.25turn) translateY(-24px);
}

.hero-home .line0::after {
  content: "";
  width: 32px;
  height: 32px;
  background: url("../images/icon-double-arrow.svg") no-repeat center;
  transform: rotate(0.25turn);
  position: absolute;
  top: 24px;
  left: calc(50% - 16px);
  -webkit-animation-name: floating;
  animation-name: floating;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
