.sidebar {
  flex: 1;
  position: relative;
}

.logoContainer {
  padding: 64px 0;
}

.sidebar .logo {
  width: 100px;
  height: 122px;
  object-fit: contain;
}

.sidebar-inner {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  color: #cdcdcd;
  position: absolute;
  width: 100%;
  height: 100vh;
}

.sidebar nav {
  gap: 0.5rem;
  font-size: 19px;
}

.sidebar nav a {
  transition: all 0.1s ease-in-out 0.05s;
}

.sidebar nav a:hover {
  background-color: #2a3d59;
}

.legalContainer {
  padding: 64px 0;
  padding-bottom: 10%;
  color: #a8a8a8;
}

.legalContainer a:hover {
  color: var(--customBlue);
  font-weight: bold;
}

nav a, .legalContainer a {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 1rem;
  padding: 0.5rem 0;
  padding-left: 25%;
  white-space: nowrap;
}

nav .icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.sidebarSummary nav a:nth-child(1) {
  background-color: #091931;
  color: white;
  img {
    filter: brightness(1.2);
  }
}

.sidebarAddTask nav a:nth-child(2) {
  background-color: #091931;
  color: white;
  img {
    filter: brightness(1.2);
  }
}

.sidebarBoard nav a:nth-child(3) {
  background-color: #091931;
  color: white;
  img {
    filter: brightness(1.2);
  }
}

.sidebarContacts nav a:nth-child(4) {
  background-color: #091931;
  color: white;
  img {
    filter: brightness(1.2);
  }
}

.footerAddTask nav a:nth-child(3) {
  background-color: #091931;
  color: white;
  img {
    filter: brightness(1.2);
  }
}

.footerBoard nav a:nth-child(2) {
  background-color: #091931;
  color: white;
  img {
    filter: brightness(1.2);
  }
}

.sidebarPrivacy .legalContainer a:nth-child(1) {
  background-color: #091931;
}
.sidebarLegal .legalContainer a:nth-child(2) {
  background-color: #091931;
}

@media (max-width: 800px) {
  .sidebar-inner {
    flex-direction: row;
    justify-content: space-between;
    height: 80px;
    width: 100%;
  }

  .legalContainer,
  .logoContainer {
    display: none;
  }

  .navSidebar {
    display: none;
  }

  .navFooter {
    flex-direction: row;
    width: 100%;
    padding: 0 1rem;
    gap: 0.5rem;
    justify-content: space-between;
  }

  .navFooter a {
    height: 80px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
  }
}

@media (min-width: 800px) {
  .navFooter {
    display: none;
  }
}