header {
  position: relative;
  top: 0;
  left: 0;
  padding: 20px 0;
  z-index: 40;
  background-color: #121621;
  /* background-color: transparent; */
}
.header-active {
  z-index: 100;
}

/* header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(
    100% + 750px
  ); 
  background-image: url('../assets/images/bg-image.png'); 
  background-size: cover; 
  background-position: center; 
  z-index: -101;
} */
.header {
  min-height: 100px;
  display: flex;
  align-items: center;
}
.header .container {
  width: 100%;
}
.header__nav ul {
  display: flex;
  gap: 40px;
}
.no-scroll {
  overflow: hidden;
}
rect {
  transition: all 0.2s ease-in-out;
}
.header__burger-menu {
  background-color: inherit;
}
.burger-active rect:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: 3px 9.5px;
  fill: #fe348c;
}
.burger-active rect:nth-of-type(2) {
  /* display: none; */
  opacity: 0;
}
.burger-active rect:nth-of-type(3) {
  transform: rotate(-45deg);
  transform-origin: 3.5px 17.5px;
  fill: #fe348c;
}

.mobile-nav {
  position: absolute;
  top: 120px;
  left: -150%;
  opacity: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 0px 15px 0px 15px;
  /* background: black; */
  /* background-color: #121621; */
  background-color: rgba(
    9,
    11,
    17,
    0.8
  ); /* Полупрозрачный фон для видимого blur */
  backdrop-filter: blur(20px);
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}

.mobile-nav--open {
  top: 100px;
  left: 0px;
  opacity: 1;
  z-index: 999;
  transition: all 0.4s ease-in-out;
}
.mobile-nav__list a:hover,
.mobile-nav__list a:active,
.header__nav-list a:hover,
.header__nav-list a:active {
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  /* padding: 12px 24px 12px 24px; */
  /* background-color: white; */
  color: var(--pink);
  border-radius: 50px;
  /* height: 60px; */
}
.header__nav-list a {
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  font-weight: 500;
  font-size: 18px;
  line-height: 32.4px;
  height: 32px;
  color: #8f909a;
  /* color: #b1b1b1; */
  /* color: #595e71; */
}
.nav {
  font-size: 18px;
}
.nav__list {
  display: flex;
  column-gap: 30px;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  padding: 20px 0 20px 0;
  row-gap: 20px;
  font-size: 20px;
}
.mobile-nav__list a {
  /* color: black; */
  color: white;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.header__nav,
.header__button {
  display: none;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav {
  /* padding: 20px 20px 20px 20px; */
  /* padding: 0px 12px 0px 12px; */
  height: 60px;
  color: #b1b1b1;
  border-radius: 50px;
  height: 60px;
  /* gap: 28px; */
  align-items: center;
  justify-content: center;
}
.header__nav a {
  /* display: block; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 12px 24px 12px 24px; */
  border-radius: 50px;
  /* height: 60px; */
}
.header__button {
  display: none !important;
  max-width: 187px;
}
.mobile-nav__list {
  gap: 40px;
}
.header__button {
  background-color: var(--black30);
  color: white;
}

@media (min-width: 768px) {
  .mobile-nav__list {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .mobile-nav {
    display: none;
  }
  .header__nav {
    display: flex;
  }
  .header__button {
    display: inline-block !important;
  }
}
