@media (height < 800px) and (width >= 1024px) {
  .section-landing .section-landing__image img {
    max-height: 800px;
  }

  .section-landing .section-landing__text {
    gap: 1.5rem;
  }
}

@media (height > 800px) and (width >= 1024px) {
  .section-landing {
    height: calc(100vh - var(--nav-height));
  }

  .section-landing .section-landing__text {
    justify-content: space-between;
  }

  .section-solutions {
    height: 100vh;
  }
}
