.nav-wrapper {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 90%;
  height: 80px;
  padding: 0 5px;
  z-index: 2;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.logo {
  height: 60px;
}

.nav-tabs {
  display: flex;
  border: none;
  list-style: none;
}

.nav-tabs li {
  font-family: "TCCC-UnityCondensed-Bold", sans-serif;
}

.nav-tab:not(:last-child) {
  padding: 10px 5px;
  margin: 0;
}

.nav-tab:last-child {
  padding: 2px 0 0 5px;
}

.nav-tab,
.menu-btn {
  cursor: pointer;
}

.hidden {
  display: none;
}

.nav-tab a {
  color: #000000;
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-tab a:hover {
  color: #000000;
  padding-bottom: 5px;
  background-image: url(../../img/red_bottom_border.png);
  background-repeat: no-repeat;
  background-position: center bottom;
}

.nav-tab .active {
  color: #000000;
  padding-bottom: 5px;
  background-image: url(../../img/red_bottom_border.png);
  background-repeat: no-repeat;
  background-position: center bottom;
}

.bg_wood {
  background: url(../../img/bg_wood.png) no-repeat center bottom;
  height: 165px;
  z-index: 999;
  position: relative;
  margin-bottom: -65px;
}

.pair_burger_image {
  margin-top: 60px;
}

/*
MOBIL
 */

@media (min-width: 768px) {
  nav li + li:before {
    content: "|";
    padding: 0 5px;
    font-family: "TCCC-UnityText-Light", sans-serif;
  }
}

@media (min-width: 960px) {
  .nav-tab:not(:last-child) {
    font-size: 2.25rem;
  }

  .nav-tab:last-child {
    font-size: 2.25rem;
  }

  .nav-wrapper {
    padding: 0 33px;
  }
}

@media (min-width: 1005px) {
  .bg_wood {
    background-size: 100% 100%;
  }
}

@media (max-width: 1400px) {
  .bg_wood {
    margin-bottom: -70px;
  }

  .pair_burger_image {
    margin-top: 40px;
  }
}

@media (max-width: 1004px) {
  .bg_wood {
    height: 150px;
    background-size: cover;
    margin-bottom: -60px;
  }
}

@media (max-width: 959px) {
  .nav-tab:not(:last-child) {
    font-size: 1.75rem;
  }

  .nav-tab:last-child {
    font-size: 1.75rem;
  }
}

@media (max-width: 900px) {

}

@media (max-width: 767px) {
  .logo-container {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-container {
    position: fixed;
    display: none;
    overflow-y: auto;
    z-index: -1;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #ecdac1;
    box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
  }

  .nav-tabs {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 80px;
    width: 100%;
  }

  .nav-tab:not(:last-child) {
    padding: 20px 25px;
    margin: 0;
  }

  .nav-tab:last-child {
    padding: 15px 25px;
  }

  .menu-btn {
    position: relative;
    display: block;
    margin: 0;
    width: 40px;
    height: 15px;
    cursor: pointer;
    z-index: 2;
    padding: 10px;
  }

  .menu-btn .menu {
    display: block;
    width: 100%;
    height: 2px;
    background: #111;
  }

  .menu-btn .menu:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }

  .menu-btn .menu:nth-child(3) {
    margin-top: 4px;
  }

  #menuToggle:checked + .menu-btn .menu {
    transition: transform 0.2s ease;
  }

  #menuToggle:checked + .menu-btn .menu:nth-child(1) {
    transform: translate3d(0, 6px, 0) rotate(45deg);
  }

  #menuToggle:checked + .menu-btn .menu:nth-child(2) {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
  }

  #menuToggle:checked + .menu-btn .menu:nth-child(3) {
    transform: translate3d(0, -6px, 0) rotate(-45deg);
  }

  #menuToggle:checked ~ .nav-container {
    z-index: 1;
    display: flex;
    animation: menu-slide-left 0.3s ease;
  }
  @keyframes menu-slide-left {
    0% {
      transform: translateX(200px);
    }
    to {
      transform: translateX(0);
    }
  }
}

@media (max-width: 700px) {
  .bg_wood {
    margin-bottom: -50px;
  }

  .pair_burger_image {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .bg_wood {
    margin-bottom: -30px;
  }

  .pair_burger_image {
    margin-top: 0px;
  }
}
