#navbar {
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  z-index: 9999;
}
.nav-showed {
  display: none;
  cursor: pointer;
  margin-top: 30px;
}
.nav-showed .order-call {
  background-color: #e0b17b;
}
.nav-links.show .nav-showed {
  display: flex;
}
/* #navbar::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  height: 10px;
  width: 100%;
  background-image: url(../assets/images/seamless-floral-pattern-on-uniform-background-ornament-darkcyan-design-fabric-art-fashion-contoвыur_122.jpg);
  background-repeat: repeat;
  background-position: center bottom;
  z-index: 999;
} */
.nav-menu {
  height: 100%;
}
.nav-menu .nav-brand a img {
  height: auto;
  max-width: 300px;
}
.nav-menu,
.nav-links {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.nav-links {
  gap: 30px;
}
.nav-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding-left: 20px;
}
.nav-links a {
  font-size: 16px;
  font-weight: 600;
}
button.order-call {
  background-color: var(--accent-color);
  border: none;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
}

/* BURGER */
.menu-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu-list li {
  margin-right: 20px;
}

.menu-list a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
}

.burger-menu {
  cursor: pointer;
  display: none;
  flex-direction: column;
}
.burger-menu .showed {
  display: none;
}

.burger-line {
  width: 30px;
  height: 3px;
  background-color: #000;
  margin: 5px 0;
}
@media screen and (max-width: 1024px) {
  .burger-menu {
    display: flex;
  }

  .nav-links {
    visibility: hidden;
    flex-direction: column;
    justify-content: start;
    position: absolute;
    top: 100%;
    right: 0;
    width: 70%;
    background-color: #3b2b15;
    border-left: 4px solid #271d0e;
    height: 100vh;
    transform: translateX(100%);
    transition: all 0.25s ease-out;

    gap: 0;
    padding: 0px;
  }

  .nav-links.show {
    display: flex;
    visibility: visible;
    justify-content: start;
    transform: translateX(0%);
  }

  .nav-links a.link {
    width: 100%;
    padding: 25px;
    text-align: start;
    color: #fff;
    border-bottom: 1px solid #e0b17b;
  }
  .nav-links a.link:focus {
    background-color: #543f24;
    padding-left: 40px;
    color: #fff;
  }
  .nav-links a.link:hover {
    padding-left: 40px;
  }
}
@media screen and (max-width: 660px) {
  .nav-menu .nav-brand a img {
    max-width: 250px;
  }
  .nav-buttons .order-call {
    display: none;
  }
}
