* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.Navbar-section {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}
.Navbar-section .link-Navbar {
  width: 100%;
  background-color: #474747;
  padding: 10px 0;
}
.link-Navbar .no-div,
.link-Navbar .mail-div {
  display: flex;
  align-items: center;
  justify-items: start;
}
.link-Navbar .navIcon-Main-div {
  display: flex;
  justify-content: end;
  gap: 10px;
}
.link-Navbar .navIcon-Main-div .nav-icon-div {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5c5c5c;
  font-size: 1.5rem;
}
.navIcon-Main-div .nav-icon-div:hover {
  cursor: pointer;
  color: aqua;
}
.Navbar-section .menu-list-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Navbar-section .menu-list-div a {
  text-decoration: none;
  color: black;
}
.Navbar-section .menu-bar-div .active {
  background-color: #dbdfd0;
  padding: 5px 5%;
  border-radius: 40px;
}
.Navbar-section .menu-list-div a:hover {
  color: blue;
}
.Navbar-section .book-btn-div {
  display: flex;
  justify-content: end;
  align-items: center;
}
.Navbar-section .book-btn-div .book-dm-btn {
  background-color: white;
  padding: 10px 10%;
}
.book-btn-div .bar-icon {
  font-size: 1.8rem;
}
.Navbar-section .secondNav {
  background-color: white;
}

@media screen and (min-width: 601px) {
  .book-btn-div .bar-icon {
    display: none;
  }
  .Mob-view{
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .link-Navbar .no-div,
  .link-Navbar .mail-div {
    justify-content: center;
  }
  .link-Navbar .navIcon-Main-div {
    justify-content: center;
    margin-top: 5px;
  }
  .Navbar-section .menu-bar-div {
    display: none;
  }
  .logo-div {
    display: none;
  }
  .Navbar-section .book-btn-div {
    justify-content: space-between;
    margin-top: 7px;
  }
  .Navbar-section .link-Navbar {
    display: none;
  }
  .book-dm-btn{
    display: none;
  }
}
