.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: linear-gradient(269.84deg, rgba(10, 16, 28, 0.0072) 0.14%, rgba(10, 16, 28, 0.419906) 26.52%, rgba(10, 16, 28, 0.6) 38.03%, rgba(10, 16, 28, 0.8) 68.95%, #0A101C 99.86%);
  display: flex;
  align-items: center;
  z-index: 10;
}

.header__logo {
  width: 100%;
  max-width: 418px;
  height: auto;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header__actions {
  display: none;
}

.header__menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header__menu a {
  color: var(--background);
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  white-space: nowrap;
}

.header__menu a:hover {
  color: var(--signal);
}

.header__menu .current-menu-item a {
  color: var(--signal);
  text-decoration: underline;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1080px) {
  .header__menu a {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    width: 100%;
    height: auto;
    min-height: max-content;
    max-height: 100vw;
    position: fixed;
    top: 0;
    overflow-y: auto;
    right: -101vw;
    transition: right 0.5s ease;
    background-color: var(--background);
    z-index: 12;
  }

  .mobile-menu.open {
    right: 0;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-menu__nav a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }

  .mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .mobile-menu__contact {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .mobile-menu__contact svg {
    flex-shrink: 0;
  }

  .header__nav {
    display: none;
  }

  .header {
    
    top: 10px;
  }

  .header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header__action {
    font-size: 0;
    color: transparent;
    cursor: pointer;
  }

  .header__action:hover svg path {
    fill: var(--primary);
  }

  .header__logo {
    max-width: 161px;
  }

  .mobile-menu__header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .mobile-menu__inner {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu__socials {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: center;
  }

  .mobile-menu__social {
    font-size: 0;
    color: transparent;
  }

  .mobile-menu__nav,
  .mobile-menu__contacts,
  .mobile-menu__socials {
    margin-bottom: 20px;
  }
}