.main {
  align-items: center;
  display: grid;
  flex-direction: column;
  grid-template-columns: 1fr;

  @media screen and (min-width: 960px) {
    grid-template-columns: 2fr 3fr;
  }
}

.video {
  align-items: center;
  background-color: #111;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  min-height: 480px;
  position: relative;
  width: 100%;

  &:after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
  }

  @media screen and (min-width: 960px) {
    height: 100vh;
  }
}

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

.video h1 {
  color: #fff;
  display: none;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  padding-right: 20px;
  padding: 0 2rem;
  position: absolute;
  top: 34px;
  width: 100%;
}

.video .logo {
  position: absolute;
  height: 110px;
  width: auto;
  top: 30px;
  padding: 0 30px;
  left: 0;
}

.video h2 {
  font-size: 2rem;
  position: absolute;
  font-weight: 300;
  color: #fff;
  width: 100%;
  padding: 0 2rem;
  padding-right: 2rem;
  z-index: 10;
  /* text-align: center; */
}

.menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
  padding-top: 5px;
  height: 100%;

  @media screen and (min-width: 960px) {
    padding-top: 0;
    padding-left: 5px;
  }
}

.menu a {
  align-items: center;
  background-color: transparent;
  background-position: center;
  background-size: cover;
  display: flex;
  flex: 1;
  font-size: 1.25rem;
  font-weight: 400;
  justify-content: space-between;
  padding: 3rem 2rem 3rem 2rem;
  transition: background-color 0.3s ease;
  overflow: hidden;
  position: relative;
  min-height: 50vw;

  &:after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
  }

  @media screen and (orientation: landscape) {
    height: 40vw;
  }

  @media screen and (orientation: portrait) {
    height: 75vw;
    max-height: 480px;
  }

  @media screen and (min-width: 960px) {
    height: 100vh;
    min-height: unset;
    max-width: unset;
  }
}

.menu a.has-image {
  color: #fff;
}

.menu a .background-image,
.menu a .background-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.menu a svg {
  width: 2rem;
  height: 2rem;
  transform: translateX(-1rem);
  transition: transform 0.3s;
}

.menu a:hover {
  background-color: #dde5ed;
}

.menu a:hover .overlay-text {
  opacity: 1 !important;
}

.menu a:hover svg {
  transform: translateX(0);
}

.menu a:last-child {
  border-right: none;
}

.footer {
  margin: 0;
}

h1 {
  font-size: 3rem;
}

.logo-section-wrapper {
  position: absolute;
  padding: 30px 30px;
  left: 0;
  top: 0;
  right: 0;
  height: auto;
  z-index: 10;
}

.logo-section {
  height: 25px;
  width: auto;
  /* position: absolute; */
  /* top: 25px; */
  /* left: 25px; */
}

.intro {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  font-weight: 300;
}

#type-sp,
#type-spe {
  font-weight: 600;
  font-size: 1em;
  color: #fff;
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
}

.overlay-text {
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  margin-top: 0.5em;
}

.enter {
  position: relative !important;
  z-index: 10;
  text-align: center;
  color: #fff;
  margin-top: 0.25em;
  font-weight: 300;
}