.header {
  position: sticky;
  top: 0;
  z-index: 85;
  padding: 25px 0;
  background: #ffffff;
  box-shadow: none;
  transition: padding .2s ease-in-out, box-shadow .2s ease-in-out;
}
.header-inner {
  display: flex;
  gap: 30px;
  align-items: center;
}
.header-logo {
  height: 58px;
  transition: height .2s ease-in-out;
  cursor: pointer;
}
.header-logo img {
  height: 100%;
}
.header-nav {
  margin-left: auto;
}
.header-nav__inner {
  display: flex;
  gap: 35px;
}
.header-nav__link {
  font-size: 20px;
  line-height: 1.55;
  color: #000000;
  cursor: pointer;
}
.header-nav__link.color-primary {
  color: #fe693a !important;
}
.header-nav__link:hover {
  color: #fe693a;
}
.header-nav__contacts {
  display: none;
}
.header-contacts {
  margin-left: 6%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 20px;
  text-align: right;
}
.header-contacts a {
  font-weight: 400;
  color: #000000;
}
.header-contacts a .icon-svg {
  width: 22px;
  height: 22px;
  display: none;
  color: transparent;
}
.header-contacts a:hover {
  color: #fe693a;
}
.header-contacts button {
  margin-top: -3px;
  font-size: 14px;
  transition: color .2s ease-in-out;
  cursor: pointer;
}
.header-contacts button:hover {
  color: #fe693a;
}
.header-cart {
  position: relative;
  margin-right: 15px;
  cursor: pointer;
  color: #000;
}
.header-cart .icon-svg {
  width: 32px;
  height: 32px;
}
.header-cart__num {
  position: absolute;
  right: -13px;
  bottom: -3px;
  padding: 6px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  background: #fe693a;
  border-radius: 50%;
}
.header .burger {
  display: none;
}
.header-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  height: 100vh;
  overflow: auto;
  background: #ffffff;
  transform: translateY(-100%);
  transition: transform .2s ease-in-out;
}
.header-menu__inner {
  margin: 0 auto;
  padding: 70px 15px;
  max-width: 1200px;
  display: flex;
  gap: 50px;
  flex-direction: column;
  align-items: flex-start;
}
.header-menu__close {
  position: absolute;
  top: 70px;
  right: 70px;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #c4c4c4;
  border-radius: 50%;
  cursor: pointer;
}
.header-menu__close .icon-svg {
  width: 17px;
  height: 17px;
}
.header-menu__title {
  margin-bottom: 40px;
  display: none;
  font-size: 14px;
  text-transform: uppercase;
}
.header-menu__list {
  position: relative;
  width: 65%;
}
.header-menu__list-title {
  margin-bottom: 40px;
  padding-left: 5px;
  font-size: 14px;
  text-transform: uppercase;
}
.header-menu__list .drop-menu {
  position: relative;
  width: 90%;
}
.header-menu__list .drop-menu > li + li {
  margin-top: 30px;
}
.header-menu__list .drop-menu > li.drop > a:after {
  content: '';
  margin-left: 30px;
  width: 40px;
  height: 35px;
  display: inline-block;
  opacity: .3;
  background: url("/images/icons/arrow.svg") center/contain no-repeat;
  transition: opacity .2s ease-in-out;
}
.header-menu__list .drop-menu > li > a {
  font-size: 64px;
  color: #c4c4c4;
}
.header-menu__list .drop-menu > li > a:hover {
  color: #000000;
}
.header-menu__list .drop-menu > li > a:hover:after {
  opacity: 1;
}
.header-menu__list .drop-menu .drop-menu {
  position: absolute;
  top: 20px;
  left: calc(100% + 7vw);
  width: 60%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease-in-out;
}
.header-menu__list .drop-menu .drop-menu li + li {
  margin-top: 20px;
}
.header-menu__list .drop-menu .drop-menu > li > a {
  font-size: 38px;
  color: #c4c4c4;
}
.header-menu__list .drop-menu .drop-menu > li > a:hover {
  color: #000000;
}
.header-menu__list .drop-menu .drop-menu > li > a:hover:after {
  opacity: 1;
}
.header-menu__list .drop-menu .drop.active > a {
  color: #000000;
}
.header-menu__list .drop-menu .drop.active > a:after {
  opacity: 1;
}
.header-menu__list .drop-menu .drop.active .drop-menu {
  opacity: 1;
  pointer-events: auto;
}
.header-menu__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-menu__contacts {
  margin-top: auto;
  display: flex;
  gap: 16px 30px;
  white-space: nowrap;
}
.header-menu__contacts a {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
}
.header-menu__contacts a:hover {
  color: #fe693a;
}
.header-menu.isOpen {
  transform: none;
}
.header.scrolled {
  padding: 12px 0;
  box-shadow: 0 0 5px 0 #0000005c;
}
.header.scrolled .header-logo {
  height: 49px;
}
@media (max-width: 1600px) {
  .header-menu__inner {
    padding: 50px 15px;
  }
  .header-menu__close {
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
  }
  .header-menu__close .icon-svg {
    width: 14px;
    height: 14px;
  }
  .header-menu__list .drop-menu > li > a {
    font-size: 50px;
  }
  .header-menu__list .drop-menu .drop-menu {
    top: 10px;
  }
  .header-menu__list .drop-menu .drop-menu > li > a {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .header-logo {
    height: 50px;
  }
  .header-nav__link {
    font-size: 18px;
  }
  .header-menu__list {
    width: initial;
  }
  .header-contacts {
    margin-left: 2%;
    font-size: 18px;
  }
}
@media (max-width: 999px) {
  .header {
    padding: 28px 0;
  }
  .header-logo {
    height: 40px !important;
  }
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    display: none;
    background: #ffffff;
  }
  .header-nav__inner {
    padding: 15px 10px;
    height: 100vh;
    gap: 20px;
    flex-direction: column;
    overflow: auto;
  }
  .header-nav__link {
    font-size: 32px;
  }
  .header-nav__link:after {
    content: '';
    margin-left: 10px;
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url("/images/icons/arrow.svg") center/contain no-repeat;
  }
  .header-nav__contacts {
    display: flex;
    gap: 5px;
    flex-direction: column;
    font-size: 18px;
    color: #5c5c5c;
  }
  .header-nav__contacts p {
    margin: 0;
    line-height: 1.7;
  }
  .header-nav__contacts a {
    color: #5c5c5c;
  }
  .header-cart .icon-svg {
    width: 20px;
    height: 20px;
  }
  .header-cart__num {
    right: -10px;
    bottom: 0;
    padding: 4px;
    min-width: 16px;
    height: 16px;
    font-size: 9px;
  }
  .header-contacts {
    margin-left: auto;
  }
  .header .burger {
    display: flex;
  }
  .header-menu {
    z-index: 101;
    transform: translateX(-100%);
  }
  .header-menu__close {
    top: 14px;
    right: 14px;
    padding: 5px;
    width: auto;
    height: auto;
    border: none;
  }
  .header-menu__close .icon-svg {
    width: 20px;
    height: 20px;
  }
  .header-menu__inner {
    padding: 15px 10px;
  }
  .header-menu__list-title {
    padding: 5px 0;
  }
  .header-menu__list-title:before {
    content: '';
    margin-right: 10px;
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url("/images/icons/arrow.svg") center/contain no-repeat;
    transform: rotate(180deg) translateY(-3px);
  }
  .header-menu__list .drop-menu {
    width: 100%;
  }
  .header-menu__list .drop-menu li + li {
    margin-top: 20px !important;
  }
  .header-menu__list .drop-menu a {
    font-size: 32px !important;
    color: #000000 !important;
  }
  .header-menu__list .drop-menu .drop > a:after {
    margin-left: 10px !important;
    width: 20px !important;
    height: 20px !important;
    opacity: 1;
  }
  .header-menu__list .drop-menu .drop-menu {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    opacity: 1;
    background: #ffffff;
    transform: translateX(-110%);
    transition: transform .2s ease-in-out;
  }
  .header-menu__list .drop-menu .drop.active .drop-menu {
    transform: none;
  }
  .header-menu__contacts {
    display: none;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 10px 0 !important;
  }
  .header-contacts a {
    font-size: 0;
  }
  .header-contacts a .icon-svg {
    display: block;
  }
  .header-contacts > *:not(:first-child) {
    display: none;
  }
}

.burger {
  position: relative;
  z-index: 7;
  width: 20px;
  height: 20px;
  overflow: hidden;
}

.burger > * {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55px;
  height: 55px;
}

.burger__lines {
  transform: translate(-50%, -50%);
}

.burger__line {
  transform-origin: 50%;
  transition: stroke-dasharray 400ms 100ms, stroke-dashoffset 400ms 100ms, transform 400ms 100ms;
  fill: none;
  stroke: #000000;
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.burger__line1 {
  stroke-dasharray: 70 40;
}

.burger__line2 {
  stroke-dasharray: 20 39;
}

.burger__line3 {
  stroke-dasharray: 20 39;
}

.burger__line4 {
  stroke-dasharray: 40 40;
}

.burger .burger-close {
  transform: translate(-50%, -50%) scale(0);
  transition: transform 400ms 50ms;
}

.burger .burger-close .burger__line {
  stroke-width: 3px;
}

.burger.active .burger__line {
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms, transform 400ms;
}

.burger.active .burger__line1 {
  stroke-dasharray: 0 40;
  stroke-dashoffset: -33px;
}

.burger.active .burger__line2 {
  stroke-dasharray: 5 39;
  stroke-dashoffset: -39px;
}

.burger.active .burger__line3 {
  stroke-dasharray: 5 39;
  stroke-dashoffset: -39px;
}

.burger.active .burger__line4 {
  stroke-dasharray: 0 40;
  stroke-dashoffset: -33px;
}

.burger.active .burger-close {
  transform: translate(-50%, -50%) scale(1);
}

/*# sourceMappingURL=header.css.map */
