#desNav {
  display: none;
}

#mobileNav {
  background: rgba(27, 33, 40, 0.1882352941);
  z-index: 1000;
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  transition: 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.078);
}
#mobileNav.sticky {
  position: fixed;
  top: 0;
  background: #1b2128;
  border: none;
}
#mobileNav.menu {
  position: fixed;
  top: 0;
  background: #1b2128;
  border: none;
}
#mobileNav .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 65px;
  padding-inline: 20px;
}
#mobileNav .flex .one {
  display: flex;
  align-items: center;
}
#mobileNav .flex .one .logo {
  transition: 0.8s;
  cursor: pointer;
  transform: translateY(1.5px);
  width: auto;
  height: auto;
  z-index: 1000;
  margin-left: 22px;
}
#mobileNav .flex .one .logo img {
  height: auto;
  width: 90px;
}
#mobileNav .flex .one .logo img.logo1 {
  display: block;
}
#mobileNav .flex .one .logo img.logo2 {
  display: none;
}
#mobileNav .flex .two {
  position: relative;
}
#mobileNav .flex .two .order {
  position: relative;
  background: transparent;
  border: 2px solid transparent;
  color: white;
  border-radius: 4px;
  padding: 10px 17px;
  transition: 0.2s;
  text-decoration: none;
  z-index: 1000;
}
#mobileNav .flex .two .order i {
  color: rgb(218, 166, 92);
  margin-left: 7px;
  transform: translateY(1px);
  font-size: 18px;
  transition: 0.2s;
}
#mobileNav .flex .two .order:hover i {
  transform: translateX(10px) translateY(1px);
}
#mobileNav .hamburger {
  padding: 5px;
  margin: -5px;
  width: auto;
  height: auto;
  z-index: 1000;
  text-align: center;
  border-radius: 50%;
}
#mobileNav .hamburger span {
  height: 3px;
  width: 26px;
  background: white;
  border-radius: 6px;
  display: block;
  transition: 0.2s;
  margin-block: 6px;
  text-align: center;
  transform-origin: 25%;
}
#mobileNav .hamburger.click .upper-span {
  transform: rotate(45deg);
}
#mobileNav .hamburger.click .center-span {
  display: none;
}
#mobileNav .hamburger.click .lower-span {
  transform: rotate(-45deg);
}
#mobileNav .sidebar {
  background: #1B2128;
  position: relative;
  top: 5px;
  left: -100px;
  width: 100%;
  height: calc(100vh - 65px);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  display: block;
  transition: 0.2s;
  overflow-y: scroll;
  padding-bottom: 60px;
  border-top: 1px solid rgb(234, 234, 234);
}
#mobileNav .sidebar a {
  padding: 22px 20px;
  color: rgb(246, 246, 246);
  font-size: 19px;
  font-weight: 500;
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
  border-bottom: none;
}
#mobileNav .sidebar a:hover {
  background: rgba(50, 60, 67, 0.0941176471);
}
#mobileNav .sidebar a.last {
  border-bottom: none;
}
#mobileNav .sidebar a.no-hover:hover {
  background: transparent;
}
#mobileNav .sidebar a i {
  float: right;
  padding-right: 3px;
  color: rgb(246, 246, 246);
  font-size: 17px;
  transform: translateY(10px);
}
#mobileNav .sidebar p {
  padding: 19px 20px;
  color: #183b56;
  font-size: 17px;
  font-weight: 500;
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
}
#mobileNav .sidebar p:hover {
  background: rgba(36, 156, 255, 0.0941176471);
}
#mobileNav .sidebar p.last {
  border-bottom: none;
}
#mobileNav .sidebar p.no-hover:hover {
  background: transparent;
}
#mobileNav .sidebar p i {
  float: right;
  padding-right: 3px;
  color: #183b56;
  font-size: 17px;
  transform: translateY(1px);
}
#mobileNav .sidebar.active {
  opacity: 1;
  pointer-events: visible;
  transition: 0.4s;
  left: 0;
}

@media only screen and (min-device-width: 1140px) {
  #mobileNav {
    display: none;
  }
  #desNav {
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 10000;
    transition: 0s;
    padding-block: 10px;
    background: transparent;
    transition: 0.3s;
    padding-bottom: 5px;
  }
  #desNav.sticky {
    position: absolute;
    top: 0;
    background: #1b2128;
    border: none;
  }
  #desNav .desktop-nav-content {
    width: 100%;
    height: 78px;
    max-width: 1300px;
    position: relative;
    padding-inline: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
  #desNav .desktop-nav-content .logo {
    transition: 0.3s;
    cursor: pointer;
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-58%);
  }
  #desNav .desktop-nav-content .logo img {
    height: auto;
    width: 120px;
    display: block;
  }
  #desNav .desktop-nav-content .menu {
    width: -moz-max-content;
    width: max-content;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 48px;
    top: 15px;
  }
  #desNav .desktop-nav-content .menu a {
    color: white;
    font-size: 14px;
    padding-inline: 3px;
    margin-inline: 7px;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
    padding-block: 9px;
    overflow: hidden; /* Hide the overflow to create the effect */
    position: relative;
  }
  #desNav .desktop-nav-content .menu a:hover {
    border-bottom: 1px solid white;
  }
  #desNav .desktop-nav-content .menu a.order-nav {
    color: white;
    border: none !important;
    padding: 12px 6px;
    margin-right: 0;
    background: transparent;
  }
  #desNav .desktop-nav-content .menu a.order-nav::before {
    display: none;
  }
  #desNav .desktop-nav-content .menu a.order-nav i {
    transition: 0.3s;
    color: rgb(218, 166, 92);
    font-size: 20px;
    margin-left: 12px;
    transform: translateY(2px);
  }
  #desNav .desktop-nav-content .menu a.order-nav:hover i {
    transform: translateX(7px) translateY(2px);
  }
  #desNav .desktop-nav-content .socials {
    width: -moz-max-content;
    width: max-content;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 48px;
    top: 15px;
  }
  #desNav .desktop-nav-content .socials a {
    color: white;
    font-size: 14px;
    padding-inline: 3px;
    margin-inline: 7px;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
    padding-block: 9px;
    overflow: hidden; /* Hide the overflow to create the effect */
    position: relative;
  }
  #desNav .desktop-nav-content .socials a:hover {
    border-bottom: 1px solid white;
  }
  #desNav .desktop-nav-content .socials a.order-nav {
    color: white;
    border: none !important;
    padding: 12px 6px;
    margin-right: 0;
    background: transparent;
  }
  #desNav .desktop-nav-content .socials a.order-nav::before {
    display: none;
  }
  #desNav .desktop-nav-content .socials a.order-nav i {
    transition: 0.3s;
    color: rgb(218, 166, 92);
    font-size: 20px;
    margin-left: 12px;
    transform: translateY(2px);
  }
  #desNav .desktop-nav-content .socials a.order-nav:hover i {
    transform: translateX(7px) translateY(2px);
  }
}/*# sourceMappingURL=nav.css.map */