::-webkit-scrollbar {
  width: 5px; /* for vertical scrollbar */
  height: 5px; /* for horizontal scrollbar */
}

/* Track of the scrollbar */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

html {
  scroll-behavior: smooth;
  user-select: none;
}

/* Handle of the scrollbar */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px; /* Rounded corners */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Thin scrollbar */
body {
  scrollbar-width: thin; /* Options: auto, thin, none */
  scrollbar-color: #888 #f1f1f1; /* thumb color, track color */
}

nav {
  background-color: #0c1943;
  height: 100px;
  position: fixed;
  z-index: 60;
  width: 100vw;
}
nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: last baseline;
  align-items: center;
}
nav ul li {
  height: 50px;
  padding: 2px 0;
}
nav ul li:first-child {
  margin-right: auto;
  margin-left: 20px;
}
@media (max-width: 768px) {
  nav ul li:first-child {
    margin-left: 0;
  }
}
nav ul li svg {
  height: 63px;
  overflow: hidden;
  fill: #ffffff;
}
nav ul li a {
  height: 100%;
  padding: 0 30px;
  margin-bottom: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-transform: uppercase;
  text-wrap: nowrap;
  font-size: 18px;
  line-height: 54px;
  font-weight: 300;
  font-family: Poppins;
}

.hideOnMobile a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.hideOnMobile a:hover {
  transform: scale(1.09);
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: #0c1943;
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 100;
}
.sidebar li {
  width: 100%;
}
.sidebar a {
  width: auto;
}
.sidebar a:hover {
  background-color: #15214b;
  stroke-width: 2;
  font-size: large;
  overflow: hidden;
  transform: translateX(5px);
  /* Slight zoom and right shift */
  transition: transform 0.5s ease, background-color 0.5s ease, stroke-width 0.5s ease;
  /* Smooth animation */
}

.desktop-view-nav {
  height: 100%;
}
.desktop-view-nav .empty-li {
  width: 20vw;
}

.menu-button {
  display: none;
}

@media (max-width: 800px) {
  .hideOnMobile {
    display: none !important;
  }
  .menu-button {
    display: block;
    fill: white;
  }
}
@media (min-width: 801px) {
  .sidebar {
    display: none !important;
  }
}
@media (max-width: 965px) {
  nav ul li a {
    padding-right: 10px;
    text-wrap: nowrap;
  }
}
@media (max-width: 400px) {
  .sidebar {
    width: 100%;
  }
}
.hideOnMobile {
  display: flex;
  align-items: center;
  justify-content: center;
}

.open-close-icons {
  cursor: pointer;
}