/* Generated delivery bundle. Source declarations retain their original order. */

/* Source: layout/_header.css */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 40px 75px;
  background: linear-gradient(180deg, #040D08 22.4%, rgba(9, 24, 16, 0.00) 90.89%);
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
  padding-inline: 30px;
}

.header__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 293px;
  height: 78px;
}

.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 49px;
}

.header__nav-item svg {
  display: none;
}

.header__nav-link {
  position: relative;
  font-family: var(--font-text);
  color: var(--color-gold);
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  -webkit-transition:
          color var(--transition-base),
          text-shadow var(--transition-base);
  transition:
          color var(--transition-base),
          text-shadow var(--transition-base);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--color-gold-light);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.header__nav-link:hover {
  color: var(--color-gold-light);
  text-shadow: 0 0 12px rgba(235, 182, 103, 0.4);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__nav-link.active {
  color: var(--color-gold-light);
}

.header__actions {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-left: 88px;
}

@media (max-width: 1727px) {
  .header__nav-list {
    gap: 32px;
  }
}

@media (max-width: 1439px) {
  .header {
    padding-block: 32px;
  }

  .header__logo {
    width: 233px;
    height: 62px;
  }

  .header__nav {
    width: 100%;
  }

  .header__nav-list {
    gap: 25px;
    flex-flow: column;
    width: 100%;
  }

  .header__nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .header__nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 427px;
    height: 1px;
    opacity: .5;
    background: linear-gradient(90deg, #EBB667 0%, rgba(235, 182, 103, 0.00) 100%);
  }

  .header__nav-item svg {
    display: block;
  }

  .header__nav-link {
    font-size: 28px;
  }

  .header__actions {
    padding-left: 0;
    margin-left: auto;
  }
}

@media (max-width: 1023px) {
  .header {
    padding-block: 18px;
  }

  .header.active {
    background: #05120B;
  }

  .header__inner {
    gap: 25px;
  }

  .header__logo {
    width: 180px;
    height: 48px;
  }
}

@media (max-width: 767px) {
  .header__logo {
    width: 130px;
    height: 35px;
  }

  .header__nav-list {
    gap: 33px;
  }

  .header__nav-item:not(:last-child)::after {
    bottom: -16px;
  }

  .header__nav-link {
    font-size: 32px;
  }
}

@media (max-width: 459px) {
  .header__nav-item:not(:last-child)::after {
    width: 237px;
  }

  .header__nav-link {
    font-size: 24px;
  }
}

