h1 {
  text-align: center;
  padding: 15px 15px;
}

.nav1 {
  z-index: 999;
  transition: .10s;
  margin: 15px auto 0 auto;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  @media (max-width: 1200px) {
    max-width: 900px;
  }
  @media (max-width: 991px) {
    top: 0;
    max-width: 100%;
    border-radius: 0;
  }
}

.nav1__food {
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  @media (max-width: 767px) {
    justify-content: flex-start;
  }
  li {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 0 30px;
    a {
      display: flex;
      flex-flow: column;
      justify-content: center;
      align-items: center;
      width: auto;
      padding: 0 10px;
      text-decoration: none;
      transform: scale(1);
      transition: .10s;
      &:hover {
        transform: scale(1.1);
      }
      span {
        font-size: 15px;
        color: #000;
        text-align: center;
        line-height: 1.4;
        white-space: nowrap;
        font-family: Dosis, sans-serif;
      }
      img{
        width: 70px;
        margin-bottom: 5px;
      }
    }
  }
}


