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

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";
  position: relative;
  display: flex;
  flex-direction: column; }

nav {
  z-index: 1;
  padding: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  font-size: 18px;
  text-decoration: none; }
  nav a:hover {
    text-decoration: underline; }

nav.sticky {
  position: sticky;
  top: 0;
  background: white; }

nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1; }

nav.twocolumn {
  justify-content: space-between; }

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; }

menu.main {
  display: none;
  flex-direction: row;
  gap: 24px;
  align-items: center; }
  menu.main a {
    cursor: pointer; }
  menu.main div.menuitem {
    position: relative; }
  menu.main menu.submenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    visibility: hidden;
    top: 100%;
    left: -32px;
    z-index: 10;
    padding: 20px 32px;
    gap: 20px;
    width: max-content; }
    menu.main menu.submenu a:hover {
      text-decoration: underline; }
  menu.main div.menuitem:hover menu.submenu {
    visibility: visible !important;
    animation: 0.5s ease fadeIn; }

@media (min-width: 880px) {
  nav {
    padding-left: 40px;
    padding-right: 40px; }
  menu.main {
    display: flex; }
  a.hamburger {
    display: none; } }

@media (min-width: 1200px) {
  nav {
    padding-left: 100px;
    padding-right: 100px; } }

footer {
  width: 100%;
  background-color: #4a4a4a;
  padding: 50px;
  color: white;
  text-align: right;
  font-size: 15px; }
  footer a {
    text-decoration: underline; }
  footer div.phone::before {
    content: "Phone: "; }
  footer div.location::before {
    content: "Location: "; }
  footer div {
    margin: 20px 0; }

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;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  color: white; }

article {
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 19px;
  gap: 15px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)); }
  article hgroup {
    display: flex;
    flex-direction: column;
    gap: 3px; }
  article h1 {
    font-size: 16px;
    text-transform: capitalize; }
  article h2 {
    font-size: 14px;
    font-weight: normal; }
  article h3 {
    font-size: 12px;
    font-weight: normal; }
  article h4 {
    font-size: 12px;
    font-weight: normal; }
  article span {
    font-weight: lighter; }

a.fullvideo {
  display: none;
  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: center;
  text-wrap: nowrap; }

a.fullvideo {
  font-size: 20px;
  border-width: 2px;
  padding: 10px 25px; }

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

@media (min-width: 780px) {
  a.fullvideo {
    display: block; } }

@media (min-width: 880px) {
  article {
    padding-left: 40px;
    padding-right: 40px; }
    article h1 {
      font-size: 30px; }
    article h2 {
      font-size: 22px; }
    article h3 {
      font-size: 18px; }
    article h4 {
      font-size: 14px; }
  menu.submenu {
    background: rgba(0, 0, 0, 0.5); } }

@media (min-width: 1200px) {
  article {
    padding: 100px; }
  a.fullvideo {
    display: block;
    align-self: center; } }
