section#upNavbar {
  /* width: 100%; */
  height: 70px;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  position: relative;
  z-index: 10;
}

section#upNavbar .main {
  max-width: 1100px;
  margin: auto;
}

.navbar {
  height: 70px;
  /* width: 90%; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;

  padding: 0 10px;
  /* direction: rtl; */
}

#logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#logo img {
  height: 45px;
  width: 100px;
  /* display: none; */
}

.toggle {
  font-size: 30px;
  color: var(--paraColor);
  cursor: pointer;
  margin-right: 4px;
  display: none;
}

.navbar .nav-links {
  /* height: 55px; */
  /* line-height: 55px; */
  /* background-color: green; */
  display: block;
  z-index: 9;
}
.navbar .links {
  display: flex;
}

.navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 19px;
  text-align: center;
}
.navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  /* text-align: center; */
}

.navbar .links li .fa-solid {
  width: 22px;
  text-align: center;
  display: inline-block;
  color: var(--paraColor);
  padding-right: 9px;
  font-size: 14px;
}

.navbar .links li .fa-solid:hover {
  cursor: pointer;
  /* transform: rotate(180deg); */
}

.navbar .links li .sub-menu {
  position: absolute;
  top: 55px;
  right: 0;
  line-height: 40px;
  background: #2b3f4e;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
}
/*display submenu on hover */
.navbar .links li:hover .sub-menu {
  display: block;
}

.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.navbar .nav-links .sidebar-logo {
  display: none;
  text-align: center;
  background-color: red;
}
