header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
  z-index: 999;
}

header.scrolled {
  background: rgba(18, 22, 25, 0.75);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header__wrapper {
  height: 90px;
  max-width: 1400px;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
}

.header__flex-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.header__main-side {
  display: flex;
  align-items: center;
}

.header__buttons-side {
  max-width: 323px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 35px;
}

.header__logo {
  margin-right: 50px;
}
.header__logo path {
  transition: 0.3s ease-in-out;
}
.header__logo:hover path {
  fill: #FF3888;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.header__nav__item {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  flex: none;
  transition: 0.3s ease-in-out;
}
.header__nav__item:hover {
  color: #FF3888;
}

.unlimited_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 59px;
  background: rgba(255, 255, 255, 0.05) url("../../assets/img/unlimited_btn-bg.webp") no-repeat center/cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  height: 50px;
  max-width: 244px;
  width: 100%;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.sing-in-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92px;
  height: 50px;
  width: 100%;
  background: #fff;
  color: #151B1F;
  font-size: 16px;
  font-weight: 400;
  border-radius: 15px;
  flex: none;
  transition: 0.3s ease-in-out;
}
.sing-in-btn:hover {
  background: #FF3888;
  color: #fff;
}

.header__burger {
  display: none;
}

.header__burger__content {
  display: none;
}

@media screen and (max-width: 1600px) {
  .header__buttons-side {
    margin-right: 0;
  }
  .unlimited_btn {
    max-width: 190px;
    margin: 0 20px;
  }
  .contact-us-container {
    max-width: 190px !important;
  }
  .contact-us-body {
    width: 190px !important;
  }
  .contact-us-header {
    gap: 10px !important;
  }
}
@media screen and (max-width: 1440px) {
  .header__nav .header__nav__item:nth-child(5) {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .header__nav__item {
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .header__nav {
    display: none;
  }
  .unlimited_btn {
    padding: 0 5px;
  }
}
@media screen and (max-width: 800px) {
  .unlimited_btn, .sing-in-btn {
    display: none;
  }
  .header__burger {
    display: block;
    cursor: pointer;
  }
  .header__buttons-side {
    max-width: 230px;
  }
  .header__burger__content {
    position: fixed;
    top: -100%;
    left: 0;
    display: block;
    width: 100%;
    background: #1b2025;
    padding: 20px 16px;
    z-index: 9999;
    transition: 0.3s ease-in-out;
    opacity: 0;
    user-select: none;
    pointer-events: none;
  }
  .header__burger__content_active {
    top: 0;
    opacity: 1;
    user-select: auto;
    pointer-events: auto;
  }
  .header__burger__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    padding-top: 20px;
  }
  .header__nav__item__mobile {
    display: block;
    color: #fff;
    font-size: 18px;
    margin: 6px 0;
  }
  .header__burger__close-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .header__burger__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 40px;
  }
  .header__burger__buttons .unlimited_btn {
    max-width: 100%;
    display: flex;
    margin: 0;
  }
  .header__burger__buttons .header__button_start-work {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    background: #fff;
    color: #151B1F;
    font-size: 16px;
    font-weight: 400;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
  }
  .header__burger__buttons .header__button_start-work:hover {
    background: #FF3888;
    color: #fff;
  }
}
@media screen and (max-width: 418px) {
  .header__logo {
    width: 100px;
  }
  .header__logo svg {
    width: 100%;
  }
}
@media screen and (max-width: 376px) {
  .header__logo {
    width: 80px;
  }
  .header__flex-wrapper {
    padding: 0 10px;
  }
  .header__buttons-side {
    gap: 5px;
  }
}
@media screen and (max-width: 320px) {
  .contact-us-container {
    max-width: 180px !important;
  }
  .contact-us-body {
    width: 180px !important;
  }
  .header__buttons-side {
    margin-left: 10px;
  }
}

/*# sourceMappingURL=header_new.css.map */
