header {
  height: 18.5vh;
  width: 77vw;
  margin: auto;
  position: relative;
}
#siteNavigation {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  font: 24px "Value Sans Pro";
}
@media only screen and (max-width: 480px) {
  #siteNavigation {
    display: none;
  }
}
svg {
  width: 0px;
  height: 5px;
  top: 25px;
  position: absolute;
  transition: width 0.5s;
}

.logo {
  background: url("../assets/media/images/logo.png") center/cover no-repeat;
  width: 130px;
  height: 130px;
}

.site-navigation-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.site-navigation-item:hover svg {
  width: 100%;
}
.site-navigation-item a:hover {
  color: unset;
  text-decoration: none;
}

a {
  color: #2d2d2d;
  text-decoration: none;
}

ul {
  padding: 0;
}
ul li {
  list-style-type: none;
}

/* Mobile Version */

#siteNavigationM {
  display: none;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 480px) {
  #siteNavigationM {
    display: flex;
  }
}

#siteNavigationM .logo {
  width: 80px;
  height: 80px;
  /* top: 3vh; */
  z-index: 2;
}

#menuToggle {
  display: block;
  position: absolute;
  /* top: 8vh; */
  right: 0px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle #menu > a {
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
  padding: 0 35px;
  display: block;
}

#menuToggle a:hover {
  color: tomato;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0;
  z-index: 2;

  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #232323;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: absolute;
  width: 105vw;
  margin: -100px 0 0 -31px;
  padding: 26vh 0px 0 0px;
  padding-top: 26vh;
  background: #d9f7d3;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(25%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
#menu li {
  padding: 10px 0;
  font-size: 22px;
}
#menu .footer-icons {
  /* margin-top: 40px; */
  width: 90vw;
  margin: 40px 96px 40px 35px;
}

#menuToggle input:checked ~ ul {
  transform: translate(-77vw, 0);
}
