#top-nav-section {
  position: fixed;
  display: block;
  background-color: rgba(180, 180, 180, 0.452);
  z-index: 3;
}

#top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
}

#top-nav #nav-log {
  z-index: 9999;
}

.w3-animate-top {
  position: relative;
  -webkit-animation: animatetop 0.4s;
          animation: animatetop 0.4s;
  background-color: rgba(245, 245, 245, 0.774) !important;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

#section-top-nav #logo a {
  text-decoration: none;
}

#horizontal-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

/* By Dominik Biedebach @domobch */
#horizontal-nav div a {
  display: block;
  padding: 10px;
  margin: 0 10px;
  text-decoration: none;
  letter-spacing: 1px;
  color: #275f3d;
  font-weight: bold;
}

#horizontal-nav div a,
#horizontal-nav div a:after,
#horizontal-nav div a:before {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#horizontal-nav div a:hover {
  color: #fff;
}

#horizontal-nav div a {
  position: relative;
  z-index: 1;
}

#horizontal-nav div a:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: ".";
  color: transparent;
  background: #1abc9c;
  visibility: none;
  opacity: 0;
  z-index: -1;
}

#horizontal-nav div a:hover:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

#button-bugger {
  display: none;
  position: relative;
  width: 40px;
  cursor: pointer;
}

#button-bugger:hover {
  opacity: 0.7;
}

#button-bugger.active {
  z-index: 9999;
}

#button-bugger.active #button-bugger-line-1 {
  -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
          transform: translateY(10px) translateX(0) rotate(45deg);
  background: #fff;
}

#button-bugger.active #button-bugger-line-2 {
  opacity: 0;
  background: #fff;
}

#button-bugger.active #button-bugger-line-3 {
  -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
          transform: translateY(-10px) translateX(0) rotate(-45deg);
  background: #fff;
  position: relative;
}

#button-bugger .button-bugger-line {
  background: var(--main-logo-color);
  border: none;
  height: 5px;
  width: 100%;
  margin: 5px 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
}

#tablet-overlay {
  display: none;
  position: fixed;
  background: #1abc9c;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  z-index: 9990;
  overflow: hidden;
}

#tablet-overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
  z-index: 9990;
}

#tablet-overlay.open li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
          animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}

#tablet-overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

#tablet-overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}

#tablet-overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

#tablet-overlay.open li:nth-of-type(5) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}

#tablet-overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 50px;
  font-family: "Vollkorn", serif;
  font-weight: 400;
  text-align: center;
}

#tablet-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

#tablet-overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 5);
  min-height: 50px;
  position: relative;
  opacity: 0;
}

#tablet-overlay ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

#tablet-overlay ul li a:hover:after, #tablet-overlay ul li a:focus:after, #tablet-overlay ul li a:active:after {
  width: 100%;
}

#tablet-overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  background: #fff;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media screen and (max-width: 768px) {
  #button-bugger {
    display: block;
  }
  #tablet-overlay {
    display: block;
  }
  #horizontal-nav {
    display: none;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
/*# sourceMappingURL=navbar.css.map */