header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 120;
  transform: translateZ(0);
  backface-visibility: hidden;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 100%;
}
header nav .logo_box {
  width: 240px;
}
header nav .logo_box path {
  transition: all 0.2s;
}
header nav .menu_bar ul {
  height: 100%;
  display: flex;
  gap: 20px;
}
header nav .menu_bar ul li {
  width: 100%;
  height: 100%;
}
header nav .menu_bar ul li a {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 25px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.5px;
  color: #fff;
  transition: all 0.2s;
}
header nav .quick_bar {
  max-width: 240px;
  width: 100%;
}
header nav .quick_bar ul {
  display: flex;
  gap: 24px;
}
header.dark_header nav .logo_box path {
  fill: #595857;
}
header.dark_header nav .menu_bar ul li a {
  color: #595857;
}