.new-nav {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  transition: 0.3s ease;
  z-index: 999;
}

.new-nav.active {
  background-color: #2d3945;
}

.nav-mobile {
  display: none;
}

.new-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  z-index: 999;
}

.new-navbar .logo {
  width: 42px;
}

.navbar-links {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.086);
  gap: 30px;
  position: relative;
  left: 90px;
}

.navbar-links a,
span {
  font-size: 16px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.navbar-links a:hover,
span:hover {
  color: rgba(255, 255, 255, 0.726);
}

.navbar-links span {
  display: flex;
  align-items: center;
}

.navbar-links span img {
  position: relative;
  left: 5px;
}

.navbar-tooltip {
  position: absolute;
  top: 25px;
  left: 0;
  opacity: 0;
  display: none;
  transition: 0.1s ease;
  padding-top: 30px;
  z-index: 999;
}

.navbar-tooltip > div {
  width: 325px;
  border-radius: 16px;
  background-color: #2d3945;
  padding: 12px;
}

.navbar-tooltip.active {
  opacity: 1;
  display: block;
  top: 35px;
  transition: 0.3s ease;
}

.navbar-tooltip a {
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.navbar-tooltip a:last-child {
  margin-bottom: 0;
}

.navbar-tooltip a:hover {
  background-color: #3c4752;
}

.navbar-tooltip img {
  width: 25px;
}

.navbar-tooltip span {
  font-size: 16px;
  font-weight: 500;
  padding-left: 10px;
}

.apps-hover img {
  transition: 0.3s ease;
}

.apps-hover.active img {
  transform: rotate(180deg);
}

.burger {
  cursor: pointer;
  display: none;
}

.burger .line {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background-color: white;
  margin: 3px 0;
}

@media screen and (max-width: 1200px) {
  .navbar-links {
    left: 30px;
  }
}

@media screen and (max-width: 992px) {
  .new-nav {
    display: none;
  }

  .nav-mobile {
    position: fixed;
    display: block;
    top: 20px;
    left: 0;
    width: 100%;
    padding: 0 14px;
    z-index: 999;
  }

  .navbar-mobile {
    width: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, 0.086);
    padding: 10px 20px;
    border-radius: 8px;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
  }

  .navbar-mobile.active {
    background-color: #3c4752;
  }

  .mobile-logo {
    width: 24px;
  }

  .burger {
    display: block;
    transition: 0.3s ease;
    z-index: 10000;
  }

  .burger .line {
    transition: 0.3s ease;
  }

  .burger.active .line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .burger.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-menu {
    box-shadow: 0px 0px 68.5999984741211px 0px #192531;
    background-color: #3d4a57;
    flex-direction: column;
    border-radius: 8px;
    position: relative;
    top: 6px;
    width: 100%;
    left: 0;
    display: none;
    opacity: 0;
    transition: 0.3s ease;
    overflow-y: scroll;
  }

  .mobile-menu.height {
    height: 80vh;
  }

  .mobile-menu.active {
    top: 16px;
    display: flex;
    opacity: 1;
  }

  .mobile-menu > span {
    padding: 16px;
    color: white;
    border-bottom: 1px solid #ffffff1a;
  }

  .mobile-menu > a {
    padding: 16px;
    color: white;
    border-bottom: 1px solid #ffffff1a;
  }

  .mobile-menu span {
    display: flex;
    align-items: center;
  }

  .mobile-menu span img {
    padding-left: 5px;
  }

  .mobile-according {
    padding: 12px;
    display: none;
  }

  .mobile-according.active {
    display: block;
  }

  .mobile-according a {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 4px;
    transition: 0.3s ease;
    margin-bottom: 12px;
  }

  .mobile-according a:last-child {
    margin-bottom: 0;
  }

  .mobile-according a:hover {
    background-color: #45525f;
  }

  .mobile-according img {
    width: 25px;
  }

  .mobile-according span {
    padding-left: 14px;
    font-size: 16px;
    font-weight: 500;
  }
}