.nav_container {
  position: fixed;
  top: 0;
  left: 0px;
  height: 65px;
  width: 100vw;
  background-color: var(--blur-color);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.container {
  height: 100%;
  width: 100%;
  padding: 0px 40px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger {
  background: none;
  margin-right: 10px;
  border: none;
  outline: none;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  padding: 5px;
}

.profile_image_container {
  margin-left: auto;
  outline: none;
  border: none;
  position: relative;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  cursor: pointer;
}
.profile_image {
  border-radius: 50%;
}
.profile_image_container:hover {
  animation: hover-animation 0.2s ease-out forwards;
}
.profile_image_container.display_menu:hover {
  animation: none;
}

@media screen and (min-width: 1200px) {
  .hamburger {
    display: none;
  }
  .nav_container {
    left: 80px;
    width: calc(100vw - 80px);
  }
  .nav_container.full {
    left: 280px;
    width: calc(100vw - 280px);
  }
  .nav_container.sidebar_hover {
    animation: navbar-adjust 0.3s ease-out forwards;
  }
  .nav_container.full.sidebar_hover {
    /* left: 80px;
    width: calc(100vw - 80px); */
  }
  @keyframes navbar-adjust {
    /* 0% {
      left: 80px;
      width: calc(100vw - 80px);
    } */
    100% {
      left: 280px;
      width: calc(100vw - 280px);
    }
  }
}

@media screen and (max-width: 1200px) {
  .container {
    padding: 0px 10px;
  }
}
