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

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 880px;
  min-height: 100vh;
  padding: 15px;
  padding-bottom: 200px;
  align-self: center; }
  main header {
    margin-top: 100px;
    margin-bottom: 50px;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: bold;
    text-align: center; }
  main h1 {
    margin: 40px 0 20px;
    font-size: 25px; }
  main p {
    margin-bottom: 20px; }
  main a {
    text-decoration: underline;
    color: darkcyan;
    cursor: pointer; }
  main ul, main ol {
    padding-left: 30px;
    margin-bottom: 20px; }
  main li {
    margin-bottom: 10px; }
  main table {
    padding: 30px 0; }
    main table tr {
      display: flex;
      flex-direction: column;
      margin-bottom: 5px; }
      main table tr td {
        padding: 2px 0; }
      main table tr td:first-child {
        font-weight: bold; }
  main figure {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    align-self: center;
    margin-bottom: 20px;
    position: relative;
    align-items: center;
    justify-content: center; }
    main figure svg.playbutton {
      position: absolute;
      z-index: 1;
      cursor: pointer; }
    main figure video, main figure img {
      width: 100%;
      padding: 4px;
      border-radius: 25px;
      border: 2px solid darkgrey;
      cursor: pointer; }
    main figure img:not([alt]) {
      border: none; }
    main figure figcaption {
      text-align: center;
      padding: 5px;
      color: #505050; }
  main figure:hover svg.playbutton {
    fill: lightgray; }

@media (min-width: 560px) {
  main table {
    padding: 30px; } }

@media (min-width: 880px) {
  main table tr {
    display: table-row; }
    main table tr td {
      padding: 4px; }
    main table tr td:first-child {
      text-wrap: nowrap;
      padding-right: 20px; } }
