.header {
  padding: 8px 0;
  z-index: 999;
}

.header_position {
  position: absolute;
  left: 0;
  right: 0;
}

.header_navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_logo_link {
  width: 50px;
}

.burger-menu {
  display: block;
  position: relative;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1000;
}

.burger-menu span {
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #fcfcfc;
  transition: all 0.5s ease;
}

.burger-menu span:nth-child(1) {
  top: 0;
}

.burger-menu span:nth-child(2) {
  top: 11px;
}

.burger-menu span:nth-child(3) {
  bottom: 0;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-nav-overlay.active {
  display: block;
}

.header_menu_list {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 80px 24px 24px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.5s ease;
  z-index: 999;
  overflow-y: auto;
}

.header_menu_list.active {
  right: 0;
}

.burger-menu {
  display: block;
}

.header_menu_link {
  font-size: 16px;
  font-weight: 600;
  color: #fcfcfc;
  text-transform: capitalize;
  display: inline-block;
  background: linear-gradient(to bottom, white, #fcfcfc);
  background-size: 0% 5%;
  background-repeat: no-repeat;
  background-position-y: 100%;
  transition: all 0.5s ease;
}

.header_menu_link:hover {
  background-size: 100% 5%;
}

.header_menu_link_active {
  background-size: 100% 5%;
}

@media screen and (min-width: 768px) {
  .header_logo_link {
    width: 60px;
  }
}

@media screen and (min-width: 1440px) {
  .header_logo_link {
    width: 70px;
  }

  .burger-menu,
  .mobile-nav-overlay {
    display: none !important;
  }

  .header_menu_list {
    position: static;
    height: auto;
    width: auto;
    max-width: none;
    background: none;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    overflow: visible;
  }

  .header_menu_link {
    font-size: 18px;
  }
}
