/* NEW HEADER */
header * {
   font-size: 18px;
   font-weight: 400;
   line-height: 140%;
   color: var(--dark);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

header {
  width: 100%;
  max-width: 1440px;
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  /* background: #091B43; */
  /* padding: 12px 0; */
  z-index: 100;
  transition: all .4s ease;
  background-color: #091B43;
  border-radius: 16px;
  z-index: 105;
}
header li {
	list-style: none !important;
}
.mob {
  display: none;
}
.header__logo {
  height: 30px;
}
.header__logo svg path {
  transition: fill .4s ease;
}
.header__wrapper {
  width: 1440px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__navbar {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__navbar li {
  transition: color .2s ease;
  color: var(--white);
}
.header__navbar li:hover {
  cursor: pointer;
  color: var(--brand-colors-pantone-278);
}
.header__navbar li a {
  color: var(--white);
  transition: all .2s ease;
}
.header__navbar li a:hover {
  cursor: pointer;
  color: var(--brand-colors-pantone-278);
}
.header__navbar-elem.smart-home {
  position: relative;
}
.header__navbar-elem.smart-home .header__list {
  width: max-content;
  left: -20px;
}
.header__navbar-elem.smart-home .header__list li a {
  padding: 12px 16px;
}
.header__navbar-elem.smart-home .header__root {
  width: 120px;
  bottom: -18px;
}
.header__navbar-elem.smart-home .chevron  {
  top: 15px;
}
.header__navbar-elem.smart-home .chevron span {
  background-color: var(--white);
}
.header__navbar-elem.smart-home:hover .chevron {
  top: 10px;
}
.header__navbar-elem.smart-home:hover .chevron span {
  background-color: var(--brand-colors-pantone-278);
}
.header__navbar-elem.smart-home:hover .chevron span:first-of-type {
  transform: rotate(225deg);
}
.header__navbar-elem.smart-home:hover .chevron span:last-of-type {
  transform: rotate(-45deg);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
  cursor: pointer;
}
.header-right:hover svg * {
  transition: all .2s ease;
}
.header-right svg:hover path {
  stroke: var(--brand-colors-pantone-278);
}
.header-right svg:hover circle {
  fill: var(--brand-colors-pantone-278);
}
.header__buy {
  width: 175px;
  padding: 7px 40px;
  position: relative;
  background: var(--white);
  color: var(--accent);
  border-radius: 8px;
  cursor: pointer;
}
.header__asside {
  opacity: 0;
  z-index: -1;
  transition: opacity .3s ease;
}
.header__asside .header__list {
  height: 0;
}
.header__asside .header__root {
  display: none;
}
.header__asside.active {
  opacity: 1;
  z-index: 1;
}
.header__asside.active .header__list {
  height: auto;
}
.header__asside.active .header__root {
  display: block;
}
.header__root {
  width: 175px;
  height: 20px;
  position: absolute;
  left: 0;
  bottom: -15px;
}
.header__list {
  width: 175px;
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  box-shadow: 1px 2px 8px 0 rgba(34, 34, 34, 0.04), -1px -2px 8px 0 rgba(0, 0, 0, 0.04);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}
.header__list li a {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  transition: all .2s ease;
}
.header__list li a:hover {
  background: var(--brand-colors-pantone-656);
  color: var(--accent);
}
.chevron {
  height: 0px;
  width: 9px;
  display: block;
  cursor: pointer;
  float: right;
  left: -8px;
  top: 14px;
  position: relative;
  margin-left: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  transition-timing-function: ease-in-out;
  pointer-events: none;
}
.chevron span {
  width: 100%;
  height: 1.5px;
  background-color: var(--accent);
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s ease;
  position: relative;
}
.chevron span:first-of-type {
  transform-origin: 100% 0;
  transform: rotate(135deg);
  top: 2.6px;
  right: 1px;
}
.chevron span:last-of-type {
  transform-origin: 100% 0;
  transform: rotate(45deg);
}
.header__buy:hover .chevron {
  transform: translateY(-6px);
}
.header__buy:hover .chevron span:first-of-type {
  transform: rotate(225deg);
}
.header__buy:hover .chevron span:last-of-type {
  transform: rotate(-45deg);
}
.mobile-burger {
  display: none;
}

.about-link {
  display: flex;
}
.about-link p {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  width: 135px;
  margin-right: 4px;
  transition: all .2s ease;
}
a:hover .about-link p {
  font-weight: 600;
  margin-right: 8px;
}

/* header fixed */
header.fixed {
  position: fixed;
  max-width: 100%;
  top: 0;
  padding: 0;
  background: var(--white);
  box-shadow: 1px 2px 8px 0 rgba(34, 34, 34, 0.04), -1px -2px 8px 0 rgba(0, 0, 0, 0.04);
  border-radius: 0;
}
header.fixed .header__wrapper {
  width: 1440px;
  margin: 0 auto;
}
header.fixed .header__logo svg path {
  fill: var(--brand-colors-pantone-2126);
}
header.fixed .header__navbar li, header.fixed .header__navbar li a {
  color: var(--dark);
}
header.fixed .header__navbar-elem.smart-home .chevron span {
  background-color: var(--dark);
}
header.fixed .header__navbar li:hover, header.fixed .header__navbar li a:hover {
  color: var(--brand-colors-pantone-2126);
}
header.fixed .header__navbar-elem.smart-home:hover .chevron span {
  background-color: var(--brand-colors-pantone-2126);
}
header.fixed .header__buy {
  background: var(--accent);
  color: var(--white);
}
header.fixed .chevron span {
  background-color: var(--white);
}
/* end header fixed */

header.fixed .header__wrapper {
  background-color: transparent;
}
header.fixed .header-right svg path {
  stroke: var(--accent);
}
header.fixed .header-right svg circle {
  fill: var(--accent);
}
header.fixed .header-right svg:hover path {
  stroke: var(--hover-main);
}
header.fixed .header-right svg:hover circle {
  fill: var(--hover-main);
}
.promo {
  width: auto;
  position: fixed;
  top: 84px;
  right: 50%;
  transform: translateX(50%) translateY(-200px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all .3s ease;
  z-index: 103; /* 5 */ 
}
.promo._show {
  transform: translateX(50%) translateY(0);
}
header.fixed ~ .promo {
  top: 72px;
  /* transform: translateX(50%) translateY(-200px); */
}
.promo__card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px 11px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all .2s ease-in-out ;
}
.promo__card img {
  max-width: 50px;
  max-height: 40px;
}
.promo__card p {
  transition: all .2s ease-in-out ;
}
.promo__card:hover {
  background: rgba(255, 255, 255, 0.2);
}
.promo__card-name {
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
}
.promo__card.--accent {
  background: rgba(255, 255, 255, 1);
  box-shadow: 1px 2px 8px 0 rgba(34, 34, 34, 0.04), -1px -2px 8px 0 rgba(0, 0, 0, 0.04);
}
.promo__card.--accent p {
  color: var(--accent);
}
/* END HEADER */


@media screen and (max-width: 1440px) {
  .container {
    width: 1200px;
  }
  /* header */
  .fz-menu {
    font-size: 16px;
  }
  header {
    max-width: 1200px;
  }
  .header__wrapper {
    width: 1200px;
  }
  header.fixed .header__wrapper {
    width: 1200px;
  }
}

@media screen and (max-width: 1440px) {
  .header__wrapper {
    width: auto;
  }
  header.fixed .header__wrapper {
    width: auto;
  }
}

@media screen and (max-width: 992px) {
  header {
    top: 0;
    border-radius: 0;
    background-color: var(--brand-colors-pantone-282);
  }
  header.fixed .header__wrapper {
    width: 100%;
  }
  .mob {
    display: block;
  }
  nav, .header__buy, .header-right, .promo {
    display: none;
  }
  .header__logo, .header__logo svg {
    width: 110px;
    height: 32px;
  }
  .mobile-burger {
    padding: 9px 6px;
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  header.fixed .mobile-burger span, header.fixed .mobile-burger span::before, header.fixed .mobile-burger span::after {
    background: var(--accent);
  }
  .mobile-burger span {
    width: 100%;
    height: 1px;
    background: var(--white);
  }
  .mobile-burger span::before, .mobile-burger span::after {
    content: '';
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    transition: transform .2s ease;
  }
  .mobile-burger span::before {
    top: 7px;
  }
  .mobile-burger span::after {
    top: 13px;
  }
  .mobile-burger.active span { 
    height: 0;
  }
  .mobile-burger.active span::before {
    transform: rotate(45deg);
  }
  .mobile-burger.active span::after {
    transform: rotate(-45deg);
    top: 6px;
  }
  .mobile-menu {
    padding: 30px 40px;
    position: fixed;
    top: 54px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--brand-colors-pantone-282);
    transform: translateY(-120%);
    transition: transform .2s ease;
    z-index: 9;
  }
  .mobile-menu.active {
    transform: translateY(0);
  }
  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .mobile-menu__list-item * {
    color: var(--white);
  }
  .mobile-menu__list-item.accordion {
    display: flex;
    flex-direction: column;
  }
  .mobile-menu__list-item.accordion .menu-accordion {
    display: flex;
  }
  .mobile-menu__list-item.accordion .menu-accordion .chevron {
    top: 11px;
  }
  .mobile-menu__list-item.accordion .menu-accordion .chevron span {
    background: var(--white);
  }
  .mobile-menu__list-item.accordion .menu-accordion.active .chevron {
    top: 6px;
  }
  .mobile-menu__list-item.accordion .menu-accordion.active .chevron span:first-of-type {
    transform: rotate(225deg);
    /* top: -2px; */
  }
  .mobile-menu__list-item.accordion .menu-accordion.active .chevron span:last-of-type {
    transform: rotate(-45deg);
    /* top: -5px; */
  }
  .mobile-menu__list-item.accordion .menu-accordion-content {
    display: flex;
    padding-left: 24px;
    flex-direction: column;
    gap: 24px;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: all .4s ease;
  }
  .mobile-menu__list-item.accordion .menu-accordion-content.active {
    max-height: 75px;
    margin-top: 24px;
  }
  .promo-mobile {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .promo-mobile__item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .promo-mobile__item p {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: var(--white);
  }
  .mobile-menu__buy {
    margin-top: 60px;
  }
  .mobile-menu__buy p {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    color: var(--white);
  }
  .mobile-menu__buy-list {
    margin-top: 16px;
    display: flex;
    gap: 12px;
  }
  .mobile-menu__buy-list a, .mobile-menu__buy-list a img{
    width: 50px;
    height: 50px;
  }
}