.hero-section {
  position: relative;
  height: 600px;
}
@media (min-width: 768px) {
  .hero-section {
    height: 750px;
  }
}
@media (min-width: 992px) {
  .hero-section {
    height: 900px;
  }
}
.hero-section__content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
}
.hero-section__title {
  margin-bottom: 0.5rem;
}
.hero-section__description {
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero-section__button {
  width: 100%;
  max-width: 150px;
}
@media (min-width: 768px) {
  .hero-section__button {
    max-width: 200px;
  }
}
.hero-section__scroll-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  height: 24px;
}
@media (min-width: 576px) {
  .hero-section__scroll-down {
    height: 32px;
  }
}
@media (min-width: 768px) {
  .hero-section__scroll-down {
    height: 48px;
  }
}
@media (min-width: 992px) {
  .hero-section__scroll-down {
    height: 56px;
  }
}
.hero-section__scroll-down svg {
  height: 100%;
  width: auto;
}
