.home {
  max-width: 935px;
  width: 100%;
  flex-direction: column
}

.homeContent {
  width: 100%
}
.homeContent > * {
  margin: 0
}

.homeSlider {
  position: relative;
  width: 100%;
  height: 225px;
  background-color: var(--mclr);
  box-shadow: #000 0 0 6px 0px;
  margin-top: 25px;
  animation-fill-mode: both;
  animation-duration: 1.6s
}
.homeSlider:focus {
  outline: none
}

.homeSlider img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  filter: brightness(100%);
  transition: all 400ms
}
.homeSlider img:hover {
  filter: brightness(75%)
}

.homeTitle {
  line-height: 47px;
  margin-bottom: 16px
}
.homeSubtitle {
  animation-delay: 50ms;
  line-height: 32px;
  margin-bottom: 9px
}
.homeParagraph {
  animation-delay: 150ms;
  margin-bottom: 17px
}
.btn.animate {
  animation-delay: 200ms
}

.drag {
  font-size: 30px;
  color: var(--wclr);
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  opacity: 0;
  text-shadow: rgba(0, 0, 0, 0.80) 0px 11px 40px;
  width: fit-content
}

@media screen and (min-width: 1072px) {
  .home {
    flex-direction: row
  }
  .homeContent {
    max-width: 550px;
    margin-top: -7px
  }
  .homeTitle {
    line-height: 72px
  }
  .homeSubtitle {
    line-height: 44px
  }
  .homeSlider {
    width: 285px;
    height: 375px;
    margin-top: 0;
    animation-duration: 1s
  }
  .homeSlider img {
    height: 375px;
    object-fit: cover
  }
}