main {
  margin: 0;
  background-color: var(--black);
  @media (width >= 800px ) {
    padding-block-start: 80svh;
    padding-block-start: 80vh;
  }

  > .layout {
    margin: 0;
    padding: 0;
  }
}

.usp {
  position: absolute;
  display: grid;
  width: 100%;
  height: 100vh;
  grid-template-areas: 'stacked';
  padding: 0;
  margin: 0;
  inset: 0 0 auto 0;
  z-index: 1;

  @media (width < 800px ) {
    position: relative;
    grid-template-areas: none;
  }


  img {
    grid-area: stacked;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: bottom center;
    display: block;
  }

  .usp-content {
    grid-area: stacked;
    align-self: center;
    color: var(--white);
    display: flex;
    gap: 50%;
    justify-content: space-between;
    max-width: 1640px;
    margin-inline: auto;
    padding-inline: 4rem;

    @media (width <= 1380px) and (height <= 800px) {
      align-items: flex-end;
      align-self: flex-end;
    }

    @media (width < 1024px ) {
      align-self: flex-end;
    }

    @media (width < 800px ) {
      display: grid;
      align-items: flex-start;
      gap: 4rem;
    }
  }

  h1, h2 {
    color: inherit;
  }

  .left-usp {
    flex-basis: max(20%, 500px);

    @media (width <= 1160px) {
      font-size: var(--font-size-18);
      line-height: var(--line-spacing-24);

      h1 {
        font-size: var(--font-size-35);
        line-height: var(--line-spacing-40);
      }
    }
  }


  .right-usp {
    flex-basis: max(20%, 340px);
    font-size: var(--font-size-45);
    line-height: var(--line-spacing-55);
    font-weight: var(--font-weight-200);

    @media (width <= 1160px) {
      font-size: var(--font-size-25);
      line-height: var(--line-spacing-35);
    }
  }

}
