.loading {
  background-color: #000;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.4s;
}

.loading.is-hidden {
  pointer-events: none;
  opacity: 0;
}

.loading video {
  width: 75%;
  height: 75%;
  object-fit: contain;
  object-position: center;
}

.nav {
  position: fixed;
  background-color: transparent;
  mix-blend-mode: difference;
}

.main {
  display: flex;
  align-items: center;
  flex-direction: column;
  /* padding-top: 4rem; */
}

@media screen and (orientation: portrait) {
  .main {
    justify-content: space-between;
  }
}

.video {
  align-items: center;
  background-color: #000;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 4rem);
  position: relative;
  width: 100%;
}

.video a {
  height: 100%;
  width: 100%;
}

video {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@media (orientation: landscape) {
  video.is-desktop {
    display: flex;
  }

  video.is-mobile {
    display: none;
  }
}

@media (orientation: portrait) {
  video.is-desktop {
    display: none;
  }

  video.is-mobile {
    display: flex;
  }
}

.grid {
  display: grid;
  gap: 3rem 1rem;
  grid-template-columns: repeat(1, 1fr);
  padding: 1rem;
  width: 100%;
}

@media screen and (min-width: 520px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 860px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.item img {
  width: 100%;
}

.item.is-big {
  grid-column: 1 / -1;
}

.item.is-big h2 {
  margin-top: 0.25rem;
}

.item.is-small h2 {
  font-size: 1rem !important;
  margin-top: 0.25rem;
}

.menu {
  border-top: 1px solid #000;
  display: flex;
  flex-direction: column;
  /* min-height: 240px; */
  width: calc(100%);
}

@media screen and (min-width: 520px) {
  .menu {
    flex-direction: row;
    height: 4rem;
  }
}

.menu a {
  border-bottom: 1px solid #000;
  flex: 1;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1rem;
}

@media screen and (min-width: 520px) {
  .menu a {
    padding: 1rem;
    border-right: 1px solid #000;
  }
}

@media screen and (min-width: 520px) {
  .menu a:last-child {
    border-right: none;
  }
}

.footer {
  margin: 0;
  padding-top: 0;
  display: none;
}

.footer-content {
  border-top: none;
}
