/* Header */

header {
  background-color: #fff;
  padding: 25px 0;
  box-shadow: 0 0 29px 0 rgba(134, 134, 134, 0.25);
  position: fixed;
  top: 0;
  transition: 0.4s;
}

.nav-header {
  display: flex;
  justify-content: flex-end;
}

.nav-menu {
  display: flex;
  margin: 0;
}

.nav-item {
  margin: 0 10px;
}

.nav-link {
  line-height: 2.5;
  padding: 0 10px;
  border-radius: 100px;
}

.nav-link:hover {
  color: #8338ec;
}

.nav-link.selected {
  color: white;
  padding: 0 30px;
}

.open-menu-btn {
  display: none;
  font-size: 16px;
  margin: 0 15px;
  cursor: pointer;
}

.open-menu-btn:hover {
  color: #8338ec;
}

.fa-bars {
  font-size: 25px;
  margin-left: 15px;
}

/* header.sticky {
  position: fixed;
} */

header.collapsed {
  padding: 15px 20px;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  right: 0;
  max-width: 300px;
  width: 100%;
  height: 100%;
  z-index: 1000;
  padding: 30px 0 0 20px;
  background-color: #fff;
  box-shadow: -10px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: 0.2s;
}

.sidebar-menu.visible {
  transform: translateX(0%);
}

.close-menu-btn {
  position: absolute;
  right: 20px;
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

.sidebar-title {
  font-size: 2rem;
  margin-left: 20px;
}

.sidebar-menu .nav-menu {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1100px) {
  header {
    padding: 25px 20px;
  }
}

@media (max-width: 650px) {
  .nav-header {
    display: none;
  }

  .menu-icon-container {
    display: flex;
    justify-content: flex-end;
  }

  .open-menu-btn {
    display: flex;
    align-items: center;
  }
}
