/* VARIABLES */
html {
  scroll-behavior: smooth; }

.fixed-menu {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1F1E20; }
  @media only screen and (min-width: 768px) {
    .fixed-menu {
      padding: 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: transparent; } }

.header-logo-image,
.logo-image {
  z-index: 1;
  margin: 1rem 2rem;
  max-width: 75px; }
  @media only screen and (min-width: 768px) {
    .header-logo-image,
    .logo-image {
      padding: 4rem;
      max-width: 300px;
      z-index: 1;
      position: absolute;
      top: 0;
      left: 0;
      margin: 0; } }

.nav-header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.menu-button,
.menu-close-button {
  margin: 0 2rem;
  width: 30px;
  cursor: pointer;
  transition: all 0.5s; }
  .menu-button:hover,
  .menu-close-button:hover {
    transform: scale(0.9);
    transition: all 0.5s; }
  @media only screen and (min-width: 768px) {
    .menu-button,
    .menu-close-button {
      margin: 4rem;
      position: absolute;
      top: 0;
      right: 0;
      width: initial; } }

.menu-close-button {
  width: 25px; }
  @media only screen and (min-width: 768px) {
    .menu-close-button {
      width: 30px; } }

#nav-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #546b5c;
  transition: visibility 0s, opacity 0.5s linear;
  z-index: 1; }
  #nav-overlay ul#primary-menu {
    height: 100vh;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0; }
    #nav-overlay ul#primary-menu a {
      text-decoration: none; }
    #nav-overlay ul#primary-menu .contact {
      color: #FFFFFC;
      font-size: 1.45rem;
      font-family: "Open Sans", sans-serif;
      font-weight: 500;
      text-decoration: none; }
      @media screen and (min-width: 768px) {
        #nav-overlay ul#primary-menu .contact {
          display: inline-block; } }
      #nav-overlay ul#primary-menu .contact.pipe {
        margin: 0 1rem;
        display: none; }
        @media screen and (min-width: 768px) {
          #nav-overlay ul#primary-menu .contact.pipe {
            display: inline-block; } }
    #nav-overlay ul#primary-menu .menu-item {
      line-height: 1.1; }
      #nav-overlay ul#primary-menu .menu-item a {
        font-family: "Kobe", sans-serif;
        font-size: 2em;
        margin-bottom: 25px;
        text-decoration: none;
        color: #FFFFFC;
        letter-spacing: 0.03em;
        font-size: 3.5rem;
        text-transform: uppercase;
        transition: all 0.5s; }
        #nav-overlay ul#primary-menu .menu-item a:hover {
          color: #ABCCBA;
          transition: all 0.5s; }
        @media screen and (min-width: 768px) {
          #nav-overlay ul#primary-menu .menu-item a {
            font-size: 5.5rem; } }

div.hidden {
  visibility: hidden;
  opacity: 0 !important; }

div.visible {
  visibility: visible;
  opacity: 1 !important; }

#footer {
  padding: 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #1F1E20;
  color: #FFFFFC; }
  #footer .footer-col {
    text-transform: uppercase;
    color: #FFFFFC;
    letter-spacing: 0.045em;
    font-weight: 300;
    font-size: 1rem; }
  #footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 2rem; }
    @media screen and (min-width: 768px) {
      #footer ul {
        display: inline-flex; } }
    #footer ul li {
      border-right: 1px solid #FFFFFC;
      padding-right: 2rem;
      transition: all 0.5s; }
      #footer ul li:hover {
        transition: all 0.5s;
        transform: scale(0.985); }
      @media screen and (min-width: 768px) {
        #footer ul li:last-child {
          border-right: none; } }
      #footer ul li a {
        text-decoration: none;
        color: #FFFFFC; }
