* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background: #008198;
  font-family: "The Neue";
  text-transform: uppercase;
}

#hero {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.75;
}

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

nav {
  position: fixed;
  width: 100%;
  padding: 1em;
  display: flex;
}

.nav-items {
  flex: 4;
  display: flex;
  align-items: center;
  gap: 2em;
}

.nav-items .links {
  display: flex;
  gap: 2em;
  align-items: center;
}

.nav-subitems {
  width: 100%;
  flex: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
}

.subitems-links {
  display: flex;
  gap: 2em;
}

nav .link a {
  font-size: 17px;
}

nav .logo .link a {
  font-size: 30px;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  background: rgb(0, 0, 0);
  clip-path: polygon(
    49.75% 49.75%,
    50.25% 49.75%,
    50.25% 50.25%,
    49.75% 50.25%
  );

  pointer-events: none;
  opacity: 0;
}

.logo {
  text-transform: uppercase;
  font-family: "Lexa";
  font-size: 30px;
  color: #fff;
}

.toggle {
  width: 80px;
}

.close-btn {
  position: relative;
  top: -0.5em;
  width: 50px;
  height: 40px;
}

.close-btn img {
  height: 40px;
  object-fit: cover;
}

p {
  color: #fff;
}

.col {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1em;
}

.col .logo,
.col .tagline {
  flex: 2;
}

.col .tagline {
  display: flex;
  gap: 7em;
  padding: 0.75em 0;
}

.col .links {
  flex: 3;
}

.links.flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.link a {
  text-decoration: none;
  color: #fff;
  font-size: 60px;
}

.toggle,
.close-btn {
  cursor: pointer;
}

.divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5px;
  height: 0%;
  background: #fff;
}

@media (max-width: 900px) {
  .link a {
    font-size: 24px;
  }

  .nav-items {
    flex: 2;
  }

  .nav-items .links {
    display: none;
  }
}
