.topBar {
  position: fixed;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  padding: 0 15px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}

.mobileLogo {
  width: 60px;
}

.mobileLogo img {
  width: 100%;
  z-index: 999;
}

.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  font-size: 25px;
}

.hamburgerLine {
  width: 30px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.4s;
}

.sidebar {
  height: 100%;
  width: 250px;
  position: fixed;
  top: 0;
  right: -250px;
  /* Hidden off-screen */
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  padding-top: 60px;
  transition: 0.4s;
  /* Animation for slide-in */
  z-index: 9;
}

.sidebar.open {
  right: 0;
  /* Slide in */
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  padding: 10px;
  text-align: center;
}

.sidebar ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #333;
}

.sidebar .client {
  color: var(--black);
  font-size: 16;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 8;
}