#section-start {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 64px;

  width: 100%;
  min-height: 100vh;
}

.hero-logo {
  display: flex;
  flex-direction: row;
  align-items: center;

  gap: 24px;
}

.hero-logo img {
  width: auto;
  height: 110px;
}

.hero-logo h1 {
  font-size: 84px;
  font-weight: 300;
  letter-spacing: 0.32rem;
}

.hero-slogan {
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.12rem;
  font-style: italic;

  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.hero-slogan-right {
  display: flex;
  flex-direction: column;
}

.hero-slogan-line2 { opacity: 0.7; }
.hero-slogan-line3 { opacity: 0.4; }
.hero-slogan-line4 { opacity: 0.1; }

.hero-cta {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);

  padding: 16px 32px;
  border-radius: 27px;

  font-weight: 300;
  font-size: 18px;
  text-align: center;
  line-height: 1rem;

  border: solid white 1px;

  background-color: #1f1f1f;

  cursor: pointer;

  transition: 150ms ease-out;
}
.hero-cta:hover {
  background-color: white;
  color: #1f1f1f;
}

@media (max-width: 950px) {
  .hero-logo img {
    height: 90px;
  }

  .hero-logo h1 {
    font-size: 64px
  }

  .hero-slogan {
    font-size: 46px;
  }
}

@media (max-width: 690px) {
  .hero-logo img {
    height: 80px;
  }

  .hero-logo h1 {
    font-size: 58px;
  }

  .hero-slogan {
    font-size: 38px;
    flex-direction: column;
    width: 70%;
    gap: 0;
  }

  .hero-slogan-left {
    text-align: left;
  }

  .hero-slogan-right {
    text-align: right;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    flex-direction: column;
    gap: 12px;
  }

  .hero-logo h1 {
    font-size: 52px;
  }

  .hero-slogan {
    width: 80%;
    font-size: 32px;
  }

  .hero-cta {
    padding: 16px 28px;
  }
}