body {
  background-color: #f6eee3;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  margin: 0;
}
@font-face {
  font-family: 'inter-extralight';
  src: url('/assets/Inter_24pt-ExtraLight.ttf');
}
.nav-link {
  display: flex;
  justify-content: left;
  background: none;
  border: none;
  border-top: #333333;
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-shadow: 0 0 50px #808080;
}
.nav-text {
  color: #333333;
  font-family: 'inter-extralight';
  font-size: 2em;
}
.name-text {
  display: flex;
  justify-content: right;
  margin: 0;
  padding: 0;
}
::-webkit-scrollbar {
  width: 0px;
}
#nav-header {
  padding-bottom: 1em;
  border-bottom: 0.1em solid #777;
}
#name-bar {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
#nav-bar {
  align-items: left;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#main-render {
  z-index: -100;
  width: 100% !important;
  height: 100% !important;
}
#graphics-container {
  z-index: -100;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0pt;
  position: absolute;
  color: black;
}
#graphics-overlay {
  z-index: -100;
  background-color: #f6eee3;
}
#loading-overlay {
  z-index: 100;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6eee3;
}
#loading-bar {
  font-family: 'inter-extralight';
  font-size: 30pt;
}
.fullscreen-overlay {
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}
.no-horizontal-scrollbar {
  /* Keeps the horizontal scrollbar hidden */
  overflow-x: hidden;
}
.no-vertical-scrollbar {
  /* Keeps the vertical scrollbar hidden */
  overflow-y: hidden;
}
.no-scrollbars {
  /* Keeps both the horizontal and vertical 
     scrollbars hidden */
  overflow: hidden;
}
.flex-scroller {
  position: absolute;
  overflow: scroll;
}
.info-container {
  grid-row-start: 1;
  grid-column-start: 1;
  border-color: black;
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5em;
  overflow-y: scroll;
  max-height: 80vh;
  scrollbar-width: none;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 34px;
}
#ui-container {
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 5em;
  max-width: 1200px;
  height: 100%;
  gap: 5em;
  box-sizing: border-box;
}
.iframe-vimeo-container {
  padding: 56.25% 0 0 0;
  position: relative;
}
.iframe-vimeo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.local-video {
  padding-top: 10pt;
  padding-bottom: 10pt;
  width: 100%;
  height: auto;
  max-height: 50vh;
}
.section-image-carousel {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-items: start;
}
.info-image-hero {
  width: 100%;
  height: auto;
  padding-bottom: 2%;
}
.info-gap {
  min-height: 25vh;
}
.info-image-supporting {
  width: 49%;
  height: auto;
}
.double-image-container {
  padding-top: 1em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#info-section {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  padding-bottom: 15em;
  box-sizing: border-box;
}
.info-header {
  font-family: 'inter-extralight';
  font-size: 50pt;
  color: #333;
  margin: 0;
  margin-bottom: 25pt;
  border-left: #000;
  border-radius: 10pt;
}
.info-description {
  height: auto;
  width: auto;
  font-family: 'inter-extralight';
  font-size: 30pt;
  color: #333;
  margin: 0;
  margin-bottom: 25pt;
}
.info-content {
  height: auto;
  width: auto;
  font-family: 'inter-extralight';
  font-size: 15pt;
  color: #333;
  margin: 0;
  word-wrap: break-word;
  white-space: pre-wrap;
  margin-bottom: 10pt;
  margin-top: 10pt;
}
.info-link {
  font-family: 'inter-extralight';
  font-size: 1.2em;
  width: 100%;
  display: block;
  text-align: center;
  color: #333;
  margin-top: 1em;
  margin-bottom: 1em;
}
.award-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.award-link {
  font-family: 'inter-extralight';
  font-size: 1em;
  display: block;
  text-align: center;
  color: #333;
  margin: 0.25em;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
}
.visible {
  visibility: visible;
}
.hidden {
  visibility: hidden;
}
.button-click {
  transition-property: color margin-left;
  transition-duration: 0.1s;
  color: #666;
  margin-left: 1em;
}
.button-unclick {
  transition-property: color margin-left;
  transition-duration: 0.1s;
  color: #333333;
  margin-left: 0;
}
.visible-fade {
  visibility: visible;
  animation: fadeIn 0.25s forwards;
}
.hidden-fade {
  visibility: hidden;
  pointer-events: none;
  animation: fadeOut 0.25s forwards;
}
.fade-loading {
  animation: fadeOut 1s forwards;
}
.menu-btn-one {
  display: flex;
  flex-direction: column;
  align-items: end;
  z-index: 99;
  height: auto;
}
.menu-btn-one input {
  display: block;
  cursor: pointer;
  position: absolute;
  height: 40px;
  width: 40px;
  opacity: 0;
  z-index: 9;
}
.menu-btn-one input:checked ~ span:nth-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(-6px, 5px);
}
.menu-btn-one input:checked ~ span:nth-child(3) {
  opacity: 0;
}
.menu-btn-one input:checked ~ span:nth-child(4) {
  display: block;
  transform: rotate(135deg);
  opacity: 10;
  margin-top: -3px;
  width: 35px;
  transform: rotate(45deg) translate(-5px, -5px);
}
.menu-btn-one span {
  width: 35px;
  height: 3px;
  background: #4e4e4e;
  position: relative;
  display: block;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.2s linear;
  opacity: 0;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0.95;
    visibility: visible;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 0.99;
    visibility: visible;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
