.Navbar1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100vw;
  margin: auto;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  /* align-items: center ; */
  /* height: 60px; */
}

#Navbar1 {
  background-color: #f8f8f8;
}

.Navbar1 > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px;
  height: 28px;
  gap: 60px;
  display: flex;
  justify-content: space-between;
}

.Navbar1 > div:nth-child(1) {
  margin-left: 120px;
}

.Navbar1 > div:nth-child(2) {
  margin-right: 120px;
}

.Navbar1 img {
  width: 100px;
}

.Navbar1 a {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 10px;
  /* background-color: #f16631; */
  border-radius: 10px;
  height: 18px;
  padding: 10px 20px 10px 20px;
  margin-top: -8px;
  color: grey;
}
.Navbar1 a:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  font-weight: bold;
  color: #f16631;
}
#Navbar1 {
  padding-top: 2px;
}

#Navbar2 {
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-top: 5px;
  height: 45px;
  padding-top: 2px;
  position: sticky;
  top: 0px;
  z-index: 250;
}

#Navbar2 > div:last-child a {
  background-color: #f16631;
  border-radius: 10px;
  height: 18px;
  padding: 10px 20px 10px 20px;
  margin-top: -8px;
  font-weight: bold;
  color: white;
}
@media all and (min-width: 160px) and (max-width: 768px) {
  .Navbar1 {
    width: 50vw;
  }
  .Navbar1 > div > div:nth-child(2) {
    display: none;
  }

  .Navbar1 > div > div:nth-child(3) {
    display: none;
  }
  .Navbar1 > div > div:nth-child(4) {
    display: none;
  }
  .Navbar1 > div > div:nth-child(1) {
    margin-left: -80px;
  }
  #login {
    margin-right: 60px;
  }
  #Navbar2 {
    display: none;
  }
  #Navbar2 > div:last-child a {
    display: none;
  }
}
