.header {
  padding: 8px 0;
}

.header_bg_color {
  background-color: #1d1d1d;
}

/* .header_container {
  display: flex;
  align-items: center;
} */

.header_navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_logo_link {
  width: 50px;
  overflow: hidden;
  transition: transform 0.9s ease;
}

.header_logo_link:hover {
  transform: scale(1.1);
}

.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: #ffffff;
  border-radius: 4px;
  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;
  left: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #ffffff;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  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: left 0.5s ease;
  z-index: 999;
  overflow-y: auto;
}

.header_menu_list.active {
  left: 0;
}

.burger-menu {
  display: block;
}

.header_menu_item {
  border-bottom: 1px solid #0000001b;
  width: 100%;
}

.header_menu_link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333333;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.9s ease;
}

.header_menu_link:hover {
  color: #0c77a4;
}

.header_menu_link_active {
  color: #0c77a4;
}

@media screen and (min-width: 768px) {
  .header_logo_link {
    width: 70px;
  }
}

@media screen and (min-width: 1440px) {
  .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;
    gap: 16px;
    padding: 0;
    overflow: visible;
  }

  .header_menu_item {
    border-bottom: none;
    width: auto;
  }

  .header_menu_link {
    color: #ffffff;
  }

  .header_menu_link:hover {
    background-color: #0c77a4;
    color: #ffffff;
  }

  .header_menu_link_active {
    background-color: #0c77a4;
    color: #ffffff;
  }
}
