.header {
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  align-items: center;
  height: 5rem;
  background: #fff;
  box-shadow: 8px 1px 4px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  padding: 0 4rem;
  z-index: 5;
}

.header__info-container {
  display: flex;
  align-items: center;
}

.header__logo {
  width: 5rem;
  margin-right: 1rem;
}

.header__nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  max-width: 1366px;
  margin: 0 auto;
}

.header__title {
  font-size: 1.7rem;
}

.header__address {
  font-size: 1.2rem;
  font-family: "SF-Light";
}

.nav {
  background: #ced0d4;
  margin-top: 5rem;
  padding: 2rem 0;
}

.nav__list {
  display: flex;
  list-style-type: none;
  margin: 0 auto;
  gap: 1rem;
  justify-content: space-around;
  max-width: 1366px;
  padding: 0 2rem;
}

.nav-item__wrapper {
  width: 20rem;
  cursor: pointer;
}

.nav-item__wrapper:hover .nav-item__image {
  filter: blur(10px);
}

.menu-scroll {
  overflow: hidden;
}

.nav-item {
  background-color: #000;
  height: 7rem;
  position: relative;
  backdrop-filter: blur(4px);
  overflow: hidden;
  border-radius: 0.5rem;
}

.nav-item__list {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 11rem;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  list-style-type: none;
  border-radius: 0.5rem;
}

.nav-item__wrapper:last-child .nav-item__list {
  right: 2%;
}

.nav-item__list a {
  color: #050505;
  padding: 1.2rem 1.6rem;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}

.nav-item__list a:hover {
  background: #ced0d4;
  border-radius: 0.5rem;
}

.nav-item__wrapper:hover .nav-item__list {
  display: block;
}

.nav-item__secondary-list-container:hover .nav-item__secondary-list {
  display: block;
}

.nav-item__secondary-list {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 20rem;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  list-style-type: none;
  left: 10rem;
}

.nav-item__secondary-list a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.nav-item__image {
  width: 100%;
  object-fit: cover;
  height: 7rem;
  opacity: 0.7;
  background-color: #000;
}

.nav-item__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.nav-item__title-text {
  color: #fff;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

@media screen and (min-width: 921px) {
  .ham {
    display: none;
  }

  .burger-menu,
  .showNav {
    display: none;
  }

  .header__nav {
    justify-content: flex-start;
  }


  .imgslb {
    width:3rem!important;
    margin:5px 14px 0 0;
  }



}

@media screen and (max-width: 920px) {
  .header__address {
    display: none;
  }

  .header__title {
    font-size: 1.3rem;
  }

  .nav {
    display: none;
  }

.imgslb{
    width:2rem;
  }
}

@media screen and (max-width: 380px) {
  .header__title {
    font-size: 1.1rem;
  }
}
