.header {
  position: fixed;
  top: 7.75rem;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: top var(--hover-transition);
  transition: top var(--hover-transition);
  max-width: 76.0625rem;
  width: 100%;
  margin: 0 auto;
}
.header .container {
  padding: 0;
}
.header:has(.has-child.is-active) .has-child > a, .header:has(.has-child.is-open) .has-child > a {
  color: transparent;
}
.header:has(.has-child.is-active) .has-child > a > span, .header:has(.has-child.is-open) .has-child > a > span {
  color: transparent;
}
.header:has(.has-child.is-active) .has-child > a > span::before, .header:has(.has-child.is-open) .has-child > a > span::before {
  opacity: 0;
  visibility: hidden;
}
.header:has(.has-child.is-active) .has-child > a > span::after, .header:has(.has-child.is-open) .has-child > a > span::after {
  opacity: 1;
  visibility: visible;
}
.header:has(.has-child.is-active) .has-child > a::after, .header:has(.has-child.is-open) .has-child > a::after {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .header:has(.has-child.is-active) .header__menu, .header:has(.has-child.is-open) .header__menu {
    opacity: 1;
    visibility: visible;
  }
}
.header.is-active {
  top: 1.5rem;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
}
.header__logo {
  display: block;
  height: 2.5rem;
}
.header__logo > img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__nav > ul > li > a {
  position: relative;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.15625rem 1rem;
  line-height: 100%;
  color: var(--white);
}
.header__nav > ul > li > a > span {
  position: relative;
  padding-right: 1.25rem;
}
.header__nav > ul > li > a > span::before, .header__nav > ul > li > a > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.4375rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: opacity var(--hover-transition), visibility var(--hover-transition);
  transition: opacity var(--hover-transition), visibility var(--hover-transition);
}
.header__nav > ul > li > a > span::before {
  background-image: url('data:image/svg+xml,%3Csvg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0.750001 0.75L5.75 5.75L10.75 0.75" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /%3E%3C/svg%3E');
}
.header__nav > ul > li > a > span::after {
  opacity: 0;
  visibility: hidden;
  background-image: url('data:image/svg+xml,%3Csvg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M10.75 5.75L5.75 0.75L0.75 5.75" stroke="url(%23paint0_linear_2643_8505)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /%3E%3Cdefs%3E%3ClinearGradient id="paint0_linear_2643_8505" x1="0.75" y1="3.25" x2="10.75" y2="3.25" gradientUnits="userSpaceOnUse"%3E%3Cstop stop-color="%2346FB65" /%3E%3Cstop offset="1" stop-color="%23F5FC44" /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E');
}
.header__nav > ul > li > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 6.25rem;
  background-color: var(--white-01);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity var(--hover-transition), visibility var(--hover-transition);
  transition: opacity var(--hover-transition), visibility var(--hover-transition);
}
.header__nav > ul > li:not(:last-child) {
  margin-right: 0.25rem;
}
@media (min-width: 768px) {
  .header__nav > ul > li:hover a::after {
    opacity: 1;
    visibility: visible;
  }
  .header__nav > ul > li:hover span {
    color: transparent;
  }
}
.header__menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.75rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity var(--hover-transition), visibility var(--hover-transition);
  transition: opacity var(--hover-transition), visibility var(--hover-transition);
  z-index: 100;
  border-radius: 2.25rem;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.header__menu-container {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__menu-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 33%;
}
.header__menu-blocks > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.header__menu-items {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 0.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0.5rem;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}
.header__menu-items > li:first-child {
  display: none;
}
.header__menu-items > li > a {
  position: relative;
  display: block;
  padding: 1.25rem 3.125rem 1.25rem 1.25rem;
  color: var(--white);
}
.header__menu-items > li > a::after {
  right: 1.25rem !important;
}
@media (min-width: 768px) {
  .header__menu-items > li:hover a::after {
    opacity: 1;
    visibility: visible;
  }
}
.header__menu.is-open {
  opacity: 1;
  visibility: visible;
}
.header__menu-items > li, .header__block {
  background-color: var(--white-01);
  border-radius: 1.25rem;
  -webkit-transition: background-color var(--hover-transition);
  transition: background-color var(--hover-transition);
}
@media (min-width: 768px) {
  .header__menu-items > li:hover, .header__block:hover {
    background-color: var(--white-015);
  }
}
.header__menu-items > li > a::after, .header__block-title::after {
  content: "";
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity var(--hover-transition), visibility var(--hover-transition);
  transition: opacity var(--hover-transition), visibility var(--hover-transition);
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('data:image/svg+xml,%3Csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M3 12.0005L20.5 12.0005" stroke="url(%23paint0_linear_5055_4417)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /%3E%3Cpath d="M14 18.9995L21 11.9995L14 4.99951" stroke="url(%23paint1_linear_5055_4417)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /%3E%3Cdefs%3E%3ClinearGradient id="paint0_linear_5055_4417" x1="11.75" y1="12.0005" x2="11.75" y2="13.0005" gradientUnits="userSpaceOnUse"%3E%3Cstop stop-color="%2346FB65" /%3E%3Cstop offset="1" stop-color="%23F5FC44" /%3E%3C/linearGradient%3E%3ClinearGradient id="paint1_linear_5055_4417" x1="17.5" y1="4.99951" x2="17.5" y2="18.9995" gradientUnits="userSpaceOnUse"%3E%3Cstop stop-color="%2346FB65" /%3E%3Cstop offset="1" stop-color="%23F5FC44" /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E');
}
.header__block {
  padding: 1.5rem 1.25rem;
  border-radius: 1.25rem;
}
.header__block-title {
  position: relative;
  font-size: max(1.25rem, 12px);
  line-height: 140%;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
  padding-right: 2.5rem;
  width: 100%;
}
.header__block-text {
  color: var(--white-08);
}
.header__block:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .header__block:hover .header__block-title {
    color: transparent;
  }
  .header__block:hover .header__block-title::after {
    opacity: 1;
    visibility: visible;
  }
}
.header__button .btn {
  background-color: transparent;
}
.header__button .btn::before {
  content: none;
}
@media (max-width: 768px) {
  .header {
    top: 136px;
    max-width: unset;
  }
  .header .container {
    padding: 0 20px;
  }
  .header__container {
    padding: 8px 8px 8px 24px;
  }
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--white-005);
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
  .header__burger.is-active > svg path:nth-child(1) {
    -webkit-transform: translate(0, 6px) rotate(45deg);
    -ms-transform: translate(0, 6px) rotate(45deg);
    transform: translate(0, 6px) rotate(45deg);
  }
  .header__burger.is-active > svg path:nth-child(2) {
    opacity: 0;
  }
  .header__burger.is-active > svg path:nth-child(3) {
    -webkit-transform: translate(0, -6px) rotate(-45deg);
    -ms-transform: translate(0, -6px) rotate(-45deg);
    transform: translate(0, -6px) rotate(-45deg);
  }
  .header__burger > svg {
    width: 32px;
    height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .header__burger > svg path {
    transform-box: fill-box;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__nav {
    width: 100%;
  }
  .header__nav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .header__nav > ul > li {
    width: 100%;
  }
  .header__nav > ul > li > a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px;
  }
  .header__nav > ul > li > a::after {
    opacity: 1;
    visibility: visible;
  }
  .header__nav > ul > li:not(:last-child) {
    margin-right: unset;
    margin-bottom: 8px;
  }
  .header__menu {
    left: 20px;
    right: 20px;
    pointer-events: none;
    max-height: 464px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .header__menu::-webkit-scrollbar {
    display: none;
  }
  .header__menu.is-open {
    pointer-events: auto;
  }
  .header__menu-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 32px;
  }
  .header__menu-wrapper {
    display: none;
    padding-top: 8px;
  }
  .header__menu-blocks {
    width: 100%;
    margin-bottom: 8px;
  }
  .header__menu-items {
    -ms-grid-columns: unset;
    grid-template-columns: unset;
    -webkit-column-gap: unset;
    -moz-column-gap: unset;
    column-gap: unset;
    margin-left: unset;
  }
  .header__menu-items > li:first-child {
    display: block;
  }
  .header__menu-items > li > a {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .header__menu-items > li, .header__block {
    border-radius: 24px;
  }
  .header__menu-items > li > a::after, .header__block-title::after {
    width: 16px;
    height: 16px;
    opacity: 1;
    visibility: visible;
    background-image: url('data:image/svg+xml,%3Csvg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M2.0013 8.00024L13.668 8.00024" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /%3E%3Cpath d="M9.33333 12.6663L14 7.99961L9.33333 3.33295" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /%3E%3C/svg%3E');
  }
  .header__block {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header__block-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .header__block-text {
    font-size: 14px;
    line-height: 100%;
  }
  .header__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 32px;
  }
  .header__button .btn {
    width: 100%;
    color: var(--black);
  }
  .header__button .btn::after {
    -webkit-transform: scale(23) translateX(-25%);
    -ms-transform: scale(23) translateX(-25%);
    transform: scale(23) translateX(-25%);
  }
  .header__button .btn > span::after {
    opacity: 1;
    visibility: visible;
  }
}

.announcement {
  position: relative;
  background-color: #070101;
  z-index: 99;
  overflow: hidden;
  margin-bottom: 0.25rem;
}
.announcement__bg {
  position: absolute;
  inset: 0;
}
.announcement__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.announcement__container {
  font-family: var(--font-helvetica);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 76rem;
  width: 100%;
  margin: 0 auto;
  padding: 0.75rem 0 0.375rem;
  height: 6.25rem;
}
.announcement__ico {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 0.625rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index: 1;
}
.announcement__ico::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.625rem;
  padding: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#E15A5A), to(#630A0A)) border-box;
  background: linear-gradient(90deg, #E15A5A 0%, #630A0A 100%) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  z-index: 2;
}
.announcement__ico::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#100505), to(#490404));
  background: linear-gradient(180deg, #100505 0%, #490404 100%);
  -webkit-box-shadow: -4px 12px 54px 0 rgba(128, 0, 0, 0.67);
  box-shadow: -4px 12px 54px 0 rgba(128, 0, 0, 0.67);
  z-index: -1;
}
.announcement__ico > svg {
  width: 1.46875rem;
  height: 1.6875rem;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 3;
  -webkit-filter: drop-shadow(-2px 6px 29px 0 rgba(128, 0, 0, 0.67));
  filter: drop-shadow(-2px 6px 29px 0 rgba(128, 0, 0, 0.67));
}
.announcement__text {
  font-size: max(1.375rem, 12px);
  line-height: 100%;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(173deg, #fff8f8 0%, #ffc0c0 77.46%, #ff7f7f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin: 0 auto;
}
.announcement__text > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: max(3.1875rem, 12px);
  line-height: 85%;
  letter-spacing: -0.05em;
  margin-top: 0.75rem;
}
.announcement__img {
  margin-top: -0.3125rem;
  width: 16rem;
  height: 19.6875rem;
}
.announcement__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.announcement__button {
  overflow: hidden;
  position: relative;
  text-align: center;
  -webkit-transition: -webkit-transform var(--hover-transition);
  transition: -webkit-transform var(--hover-transition);
  transition: transform var(--hover-transition);
  transition: transform var(--hover-transition), -webkit-transform var(--hover-transition);
  padding: 0.125rem;
  border-radius: 0.5rem;
  width: 13.4375rem;
}
.announcement__button > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  font-size: max(0.875rem, 12px);
  line-height: 120%;
  font-weight: 700;
  letter-spacing: -0.05em;
  border-radius: 0.5rem;
  padding: 0.9375rem 2rem;
  color: var(--white);
  background: -webkit-gradient(linear, left top, right top, from(#007404), to(#003704)), radial-gradient(29.68% 233.35% at 49.84% 94.2%, #046b00 0%, rgba(0, 119, 0, 0) 100%), radial-gradient(82.6% 31.07% at 49.84% 94.2%, #00ff2f 0%, rgba(16, 189, 0, 0) 100%);
  background: linear-gradient(90deg, #007404 0%, #003704 100%), radial-gradient(29.68% 233.35% at 49.84% 94.2%, #046b00 0%, rgba(0, 119, 0, 0) 100%), radial-gradient(82.6% 31.07% at 49.84% 94.2%, #00ff2f 0%, rgba(16, 189, 0, 0) 100%);
}
.announcement__button > span > img, .announcement__button > span > svg {
  width: 0.890625rem;
  height: 0.890625rem;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: 0.75rem;
}
.announcement__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250%;
  aspect-ratio: 1/1;
  background: conic-gradient(from 270deg, #A1FF92 0deg, #47D431 90deg, transparent 120deg, transparent 360deg);
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  -ms-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-animation: bgRotate 4s linear infinite;
  animation: bgRotate 4s linear infinite;
  z-index: -2;
}
.announcement__button::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  width: 12.8125rem;
  height: 0.875rem;
  bottom: 0.5px;
  background: url("data:image/svg+xml,...") no-repeat center/contain;
  mix-blend-mode: plus-lighter;
}
@media (min-width: 768px) {
  .announcement__button:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  .announcement__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
    max-width: 500px;
    height: 120px;
  }
  .announcement__ico {
    width: 30px;
    height: 30px;
    margin: 0 7px;
  }
  .announcement__ico::before, .announcement__ico::after {
    border-radius: 7px;
  }
  .announcement__ico > svg {
    width: 16px;
    height: 19px;
  }
  .announcement__text {
    font-size: 15px;
  }
  .announcement__text > span {
    font-size: 36px;
    margin-top: 6px;
  }
  .announcement__button {
    width: auto;
    margin-top: 8px;
  }
  .announcement__button > span {
    font-size: 12px;
    padding: 9px 13px 9px 16.5px;
  }
  .announcement__button > span > img, .announcement__button > span > svg {
    margin-left: 8px;
  }
  .announcement__button::after {
    width: 125px;
    bottom: -1px;
  }
}
/*# sourceMappingURL=header.css.map */
/*# sourceMappingURL=header.css.map */