.header {
  display: none;
}

.home-hero {
  position: relative;
  z-index: 1;
  height: 50rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--back-green);
  @media (min-width: 1024px) {
    height: 58rem;
  }
  @media (min-width: 1200px) {
    height: 62.5rem;
  }
  
  & .home-hero__bg-leaves {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    min-width: 60rem;
    object-fit: contain;
  }
  
  & .home-hero__image {
    aspect-ratio: 1 / 1;
    border: 10px solid #7EC486;
    border-radius: 9999px;
    object-fit: cover;
    position: absolute;
    &.home-hero__image--tr {
      width: 20rem;
      top: 2rem;
      right: -5rem;
    }
    &.home-hero__image--bl {
      width: 25rem;
      bottom: -4rem;
      left: -11.25rem;
    }
    @media (min-width: 768px) {
      &.home-hero__image--tr {
        width: 25rem;
        top: -1rem;
        right: -6rem;
      }
      &.home-hero__image--bl {
        width: 30rem;
        bottom: -6rem;
      }
    }
    @media (min-width: 1200px) {
      &.home-hero__image--tr {
        width: 40.625rem;
        top: -7rem;
        right: -7.55rem;
      }
      &.home-hero__image--bl {
        width: 40.625rem;
        bottom: -7rem;
        left: -6.25rem;
      }
    }
  }
  
  & .home-hero__logo {
    position: relative;
    width: 15rem;
    margin-top: 1.25rem;
    margin-left: 1.25rem;
    & img {
      width: 100%;
    }
    @media (min-width: 768px) {
      width: 25rem;
      margin-top: 2rem;
      margin-left: 2rem;
    }
    @media (min-width: 1200px) {
      width: 42.6875rem;
      margin-top: 3rem;
      margin-left: 2.5rem;
    }
  }
  
  & .home-hero__title {
    width: calc(100% - 2.5rem);
    position: absolute;
    top: calc(50% - 2.5rem);
    left: 1.25rem;
    @media (min-width: 768px) {
      width: 35rem;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    @media (min-width: 1024px) {
      width: 45rem;
    }
    @media (min-width: 1200px) {
      width: 54.0625rem;
    }
  }
  
  & .home-hero__links {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-right: 0.625rem;
    align-self: flex-end;
    & .home-hero__link {
      border-radius: 9999px;
      border: 2px solid var(--autumn);
      aspect-ratio: 1 / 1;
      background-color: var(--snow);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 7.5rem;
      line-height: 1;
      letter-spacing: 0.08em;
      box-shadow: var(--elevation-2);
    }
    @media (min-width: 768px) {
      margin-right: 2.5rem;
      margin-bottom: 1rem;
    }
    @media (min-width: 1024px) {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 2rem;
      margin-right: 4rem;
      margin-bottom: 3.5rem;
      font-size: 1.25rem;
      & .home-hero__link {
        width: 10.9375rem;
      }
    }
  }
}

.home-flow-arrow {
  align-self: center;
  @media (min-width: 1200px) {
    transform: rotate(-90deg);
  }
}

















