* {
  margin: 0;
  padding: 0; }

a {
  text-decoration: inherit;
  color: inherit; }

@font-face {
  font-family: 'Crimson Text';
  font-style: normal;
  src: url(/fonts/CrimsonText-Regular.ttf) format("truetype"); }

@font-face {
  font-family: 'Crimson Text';
  font-weight: 700;
  src: url(/fonts/CrimsonText-Bold.ttf) format("truetype"); }

@font-face {
  font-family: 'OpenSans';
  font-style: normal;
  font-weight: 100 1000;
  src: url(/fonts/OpenSans-VariableFont_wdth\,wght.ttf) format("truetype"); }

.hidden {
  display: none !important; }

body {
  font-family: "OpenSans"; }

section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100vw;
  height: 100vh; }

video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  object-fit: cover;
  object-position: top 30% left 50%; }

nav {
  z-index: 1;
  height: 50px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 18px;
  text-decoration: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)); }
  nav menu.main {
    display: none; }
  nav a:hover {
    text-decoration: underline; }

menu.hamburger {
  z-index: 5;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 50px;
  background-color: white;
  font-size: 30px; }
  menu.hamburger a {
    padding: 25px 0;
    text-transform: uppercase;
    border-bottom: 1px solid lightgray; }
  menu.hamburger a:last-child {
    border-bottom: none; }

footer {
  z-index: 1;
  min-height: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-end;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)); }
  footer article {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px 0; }
  footer h1 {
    font-size: 16px;
    text-transform: capitalize; }
  footer h2 {
    font-size: 14px;
    font-weight: normal; }
  footer h3 {
    font-size: 12px;
    font-weight: normal; }
  footer h4 {
    font-size: 12px;
    font-weight: normal; }
  footer span {
    font-weight: lighter; }

a.fullvideo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 14px;
  text-transform: capitalize;
  border: white 1px solid;
  border-radius: 10px;
  gap: 40px;
  padding: 10px 20px;
  color: white;
  align-items: center;
  align-self: flex-start;
  text-wrap: nowrap; }

a.fullvideo:hover {
  color: black;
  background-color: white;
  transition: 0.3s ease; }

@media (min-width: 800px) {
  a.fullvideo {
    font-size: 20px;
    border-width: 2px;
    padding: 10px 25px; }
  footer {
    padding-left: 40px;
    padding-right: 40px; }
    footer h1 {
      font-size: 30px; }
  nav {
    padding-left: 40px;
    padding-right: 40px; }
    nav menu.main {
      display: flex;
      flex-direction: row;
      gap: 24px;
      align-items: center; }
      nav menu.main a {
        cursor: pointer; }
      nav menu.main div.menuitem {
        position: relative; }
      nav menu.main div.menuitem:hover menu.submenu {
        visibility: visible !important;
        animation: 0.5s ease fadeIn; }
      nav menu.main menu.submenu {
        display: flex;
        flex-direction: column;
        position: absolute;
        visibility: hidden;
        top: 100%;
        left: -32px;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10;
        padding: 20px 32px;
        gap: 20px;
        width: max-content; }
        nav menu.main menu.submenu a:hover {
          text-decoration: underline; }
    nav a.hamburger {
      display: none; } }

@media (min-width: 1200px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
    padding-left: 100px;
    padding-right: 100px; }
  nav {
    padding-left: 100px;
    padding-right: 100px; }
  a.fullvideo {
    align-self: center; } }
