.menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s cubic-bezier(0.5, 0, 0, 1);
  transition: 0.5s cubic-bezier(0.5, 0, 0, 1);
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #1b1b1b;
}
@media (min-width: 768px) {
  .menu {
    background-color: rgba(0, 0, 0, 0.9);
  }
}
.menu.opened {
  opacity: 1;
  visibility: visible;
}
.menu__header {
  height: 102px;
  min-height: 102px;
}
@media (max-width: 767px) {
  .menu__header {
    display: none;
  }
}
@media (min-width: 1400px) {
  .menu__header {
    height: 6.8vw;
    min-height: 6.8vw;
  }
}
.menu__header-link {
  display: block;
  height: 100%;
  width: 10vw;
}
.menu__header-link img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.menu__footer {
  height: 102px;
  min-height: 102px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .menu__footer {
    display: none;
  }
}
@media (min-width: 1400px) {
  .menu__footer {
    height: 6.8vw;
    min-height: 6.8vw;
  }
}
.menu__footer-lang {
  margin-left: auto;
  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: 10vw;
  min-width: 10vw;
  font-weight: 500;
}
.menu__body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: auto;
  padding-top: 72px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu__body {
    padding-top: 0px;
  }
}
@media (min-width: 576px) {
  .menu__body {
    margin: 0 calc(10vw + 1px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .menu__body {
    margin-top: -102px;
    margin-bottom: -102px;
    background-color: #000000;
    z-index: 3;
  }
}
@media (min-width: 992px) {
  .menu__body {
    padding-top: 0;
    margin-right: 50vw;
  }
}
@media (min-width: 1400px) {
  .menu__body {
    margin-top: -6.8vw;
    margin-bottom: -6.8vw;
  }
}
.menu__list {
  padding-top: 24px;
  padding-bottom: 12px;
  padding-right: 72px;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .menu__list {
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .menu__list {
    margin-top: auto;
    margin-bottom: auto;
    overflow: auto;
    height: 100%;
    width: 100%;
  }
}
.menu__list-link {
  display: block;
  padding: 12px 12px 12px 24px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
}
@media (min-width: 992px) {
  .menu__list-link {
    padding: 8px 8px 8px 36px;
    font-size: 0.9rem;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .menu__list-link {
    font-size: 0.8rem;
    line-height: 1;
  }
}
.menu__list-link:hover {
  color: #ff7d00;
}
.menu__list-link.parent {
  padding-bottom: 8px;
}
@media (min-width: 992px) {
  .menu__list-link.parent {
    padding-bottom: 4px;
  }
}
.menu__list-link.active,
.menu__list-link.has {
  color: #ff7d00;
}
.menu__sublist {
  padding-bottom: 0.8rem;
}
.menu__sublist-link {
  display: block;
  padding: 6px 12px 6px 24px;
  color: #c8c8c8;
}
@media (min-width: 992px) {
  .menu__sublist-link {
    padding: 4px 4px 4px 36px;
    font-size: 0.9rem;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .menu__sublist-link {
    font-size: 0.8rem;
    line-height: 1.1;
  }
}
.menu__sublist-link:hover {
  color: #ff7d00;
}
.menu__sublist-link.active,
.menu__sublist-link.has {
  color: #ff7d00;
}
.menu-open {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 102px;
  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;
  padding: 0;
  background-color: transparent;
  border: none;
  line-height: 1;
}
@media (max-width: 767px) {
  .menu-open {
    margin-bottom: -32px;
  }
}
@media (min-width: 768px) {
  .menu-open {
    position: fixed;
    left: 0;
    top: 0;
    width: 10%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (min-width: 1200px) {
  .menu-open:hover .menu-open__icon-top {
    margin-left: 12px;
    height: 42px;
  }
  .menu-open:hover .menu-open__icon-bottom {
    margin-right: 12px;
    height: 42px;
  }
}
.menu-open__icon {
  width: 27px;
  height: 42px;
  position: relative;
  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;
}
@media (max-width: 767px) {
  .menu-open__icon {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.menu-open__icon-top,
.menu-open__icon-center,
.menu-open__icon-bottom {
  width: 3px;
  height: 32px;
  background-color: #000000;
}
@media (min-width: 768px) {
  .menu-open__icon-top,
  .menu-open__icon-center,
  .menu-open__icon-bottom {
    background-color: #ff7d00;
  }
}
@media (min-width: 1200px) {
  .menu-open__icon-top,
  .menu-open__icon-center,
  .menu-open__icon-bottom {
    -webkit-transition: 0.5s cubic-bezier(0.5, 0, 0, 1);
    transition: 0.5s cubic-bezier(0.5, 0, 0, 1);
  }
}
.menu-open__icon-center {
  height: 42px;
}
@media (max-width: 767px) {
  .menu-open__text {
    display: none;
  }
}
@media (min-width: 768px) {
  .menu-open__text {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #ff7d00;
    font-size: 1.2rem;
    margin-top: 145px;
    position: absolute;
  }
}
.menu-close {
  position: absolute;
  z-index: 5;
  right: 0;
  top: 10px;
  display: block;
  width: 72px;
  height: 72px;
  background-color: transparent;
  background-image: url("../icons/white/close.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 576px) {
  .menu-close {
    top: 14px;
    width: 10vw;
    height: 10vw;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-close {
    height: 84px;
    top: 8px;
  }
}
@media (min-width: 992px) {
  .menu-close {
    right: 10vw;
    top: 102px;
    width: 40vw;
    height: calc(100vh - 204px);
    background-position: top 24px right 24px;
  }
}
@media (min-width: 1400px) {
  .menu-close {
    top: 7.2vw;
  }
}
.menu-close.active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1200px) {
  .menu-close.active {
    opacity: 0.6;
  }
  .menu-close.active:hover {
    opacity: 1;
  }
}
.menu .lang {
  color: #ffffff;
  position: fixed;
}
.menu__callback {
  position: fixed;
  left: 24px;
  top: 24px;
  width: calc(100% - 94px);
  -webkit-box-shadow: 0 0 0 0 #1b1b1b;
  box-shadow: 0 0 0 0 #1b1b1b;
}
@media (max-width: 575px) {
  .menu__callback.with-consult {
    /*left:92px;width:calc(100% - 162px)*/
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .menu__callback {
    left: calc(10vw + 24px);
    width: calc(100% - 20vw - 48px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu__callback {
    top: 28px;
    left: calc(10vw + 25px);
    width: calc(100% - 20vw - 50px);
    -webkit-box-shadow: 0 0 0 0 #000000;
    box-shadow: 0 0 0 0 #000000;
  }
}
@media (min-width: 992px) {
  .menu__callback {
    top: auto;
    left: 70vw;
    bottom: 24px;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: calc(40vw - 48px);
    margin-left: calc(-20vw + 24px);
    height: calc(102px - 48px);
  }
}
@media (min-width: 1400px) {
  .menu__callback {
    height: calc(6.8vw - 48px);
  }
}
.menu__consult {
  position: fixed;
  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-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  border: none;
}
@media (max-width: 575px) {
  .menu__consult {
    left: 24px;
    top: 24px;
    height: 42px;
    width: 42px;
    font-size: 0;
    background-color: transparent;
    background-image: url(../icons/white/help.svg);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .menu__consult {
    left: 0;
    top: 0;
    width: 10vw;
    height: 90px;
    background-color: transparent;
    background-image: url(../icons/white/help.svg);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu__consult {
    left: 0;
    bottom: 0;
    width: 10vw;
    height: 102px;
    background-color: transparent;
    background-image: url(../icons/white/help.svg);
  }
}
@media (min-width: 992px) {
  .menu__consult {
    right: 0;
    top: 0;
    width: 10vw;
    height: 102px;
    background-color: #ff7d00;
    color: #1b1b1b;
    font-size: 1rem;
    font-weight: 500;
  }
  .menu__consult:hover {
    background-color: #ff7d00;
  }
}
@media (min-width: 1400px) {
  .menu__consult {
    height: 6.8vw;
  }
}
.menu .social__list {
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}
@media (max-width: 575px) {
  .menu .social__list {
    right: 0;
    top: 92px;
    width: calc(8vw + 40px);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .menu .social__list {
    left: 0;
    bottom: 20px;
    width: 10vw;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu .social__list {
    left: 0;
    bottom: 102px;
    width: 10vw;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .menu .social__list {
    left: 70vw;
    top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    top: 34px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 1400px) {
  .menu .social__list {
    top: 2.4vw;
  }
}
.menu .social__list-point {
  padding: 4px 0;
}
@media (min-width: 992px) {
  .menu .social__list-point {
    padding: 0 4px;
  }
}
.menu .social__item {
  width: 32px;
  height: 36px;
}
@media (max-width: 767px) {
  .menu .social__item {
    width: 24px;
    height: 24px;
  }
}
.menu .social__item--telegram {
  background-image: url("../icons/white/telegram-trans.svg");
}
@media (min-width: 1200px) {
  .menu .social__item--telegram:hover {
    background-image: url("../icons/gold/telegram-trans.svg");
  }
}
.menu .social__item--behance {
  background-image: url("../icons/white/behance-trans.svg");
}
@media (min-width: 1200px) {
  .menu .social__item--behance:hover {
    background-image: url("../icons/gold/behance-trans.svg");
  }
}
.menu .social__item--youtube {
  background-image: url("../icons/white/youtube-trans.svg");
}
@media (min-width: 1200px) {
  .menu .social__item--youtube:hover {
    background-image: url("../icons/gold/youtube-trans.svg");
  }
}
.menu .social__item--instagram {
  background-image: url("../icons/white/instagram-trans.svg");
}
@media (min-width: 1200px) {
  .menu .social__item--instagram:hover {
    background-image: url("../icons/gold/instagram-trans.svg");
  }
}
.menu .social__item--facebook {
  background-image: url("../icons/white/facebook-trans.svg");
}
@media (min-width: 1200px) {
  .menu .social__item--facebook:hover {
    background-image: url("../icons/gold/facebook-trans.svg");
  }
}
.menu .social__item--vk {
  background-image: url("../icons/white/vk-trans.svg");
}
@media (min-width: 1200px) {
  .menu .social__item--vk:hover {
    background-image: url("../icons/gold/vk-trans.svg");
  }
}
.menu .social__item--pinterest {
  background-image: url("../icons/white/pinterest-trans.svg");
}
@media (min-width: 1200px) {
  .menu .social__item--pinterest:hover {
    background-image: url("../icons/gold/pinterest-trans.svg");
  }
}
.menu .social__item--linkedin {
  background-image: url("../icons/white/linkedin-trans.svg");
}
@media (min-width: 1200px) {
  .menu .social__item--linkedin:hover {
    background-image: url("../icons/gold/linkedin-trans.svg");
  }
}
@media (min-width: 768px) {
  [dir="rtl"] .menu-open {
    left: auto;
    right: 0;
  }
}
[dir="rtl"] .menu-close {
  right: auto;
  left: 0;
}
@media (min-width: 992px) {
  [dir="rtl"] .menu-close {
    left: 10vw;
    background-position: top 24px left 24px;
  }
}
@media (min-width: 768px) {
  [dir="rtl"] .menu__body {
    margin-left: calc(10vw + 1px);
  }
}
@media (min-width: 992px) {
  [dir="rtl"] .menu__body {
    margin-right: calc(10vw + 1px);
    margin-left: calc(50vw + 1px);
  }
}
[dir="rtl"] .menu__list {
  padding-right: 0;
  padding-left: 72px;
}
@media (min-width: 576px) {
  [dir="rtl"] .menu__list {
    padding-left: 0;
  }
}
[dir="rtl"] .menu__list-link {
  padding: 12px 24px 12px 12px;
}
@media (min-width: 992px) {
  [dir="rtl"] .menu__list-link {
    padding: 8px 36px 8px 8px;
  }
}
[dir="rtl"] .menu__sublist-link {
  padding: 6px 24px 6px 12px;
}
@media (min-width: 992px) {
  [dir="rtl"] .menu__sublist-link {
    padding: 4px 36px 4px 4px;
  }
}
[dir="rtl"] .menu__footer-lang {
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"] .menu__callback {
  left: 72px;
}
@media (min-width: 576px) and (max-width: 767px) {
  [dir="rtl"] .menu__callback {
    left: calc(10vw + 24px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [dir="rtl"] .menu__callback {
    left: calc(10vw + 25px);
  }
}
@media (min-width: 992px) {
  [dir="rtl"] .menu__callback {
    left: 30vw;
  }
}
@media (max-width: 575px) {
  [dir="rtl"] .menu__consult {
    right: 24px;
    left: auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  [dir="rtl"] .menu__consult {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [dir="rtl"] .menu__consult {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  [dir="rtl"] .menu__consult {
    left: 0;
    right: auto;
  }
}
@media (max-width: 575px) {
  [dir="rtl"] .menu .social__list {
    right: auto;
    left: 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  [dir="rtl"] .menu .social__list {
    left: auto;
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  [dir="rtl"] .menu .social__list {
    left: auto;
    right: 0;
  }
}
@media (min-width: 992px) {
  [dir="rtl"] .menu .social__list {
    left: 30vw;
  }
}
.lang_mobile {
  display: none;
}
@media (max-width: 992px) {
  .lang_mobile {
    display: block;
    position: fixed;
    right: 0;
    top: 290px;
    width: 72px;
    border-top: solid 1px white;
  }
  .lang_mobile .lang {
    position: relative !important;
  }
}
@media (max-width: 992px) {
  .lang_mobile .lang {
    bottom: auto;
    top: -5px;
    left: 0px !important;
  }
  .header__footer-lang {
    bottom: auto !important;
  }
  .lang_mobile {
    top: 92px !important;
    border: none;
  }
  .menu__consult {
    left: 0;
    top: 0;
    height: 87px;
    width: 87px;
    padding: 0;
    font-size: 0;
    /*background-color: #1b1b1b;*/
    background-image: url(../icons/white/help.svg);
    z-index: 1;
  }
  .menu__header-link img {
    display: none;
  }
  .totop {
    bottom: 0 !important;
  }
  .bx-livechat-wrapper {
    position: fixed;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    max-width: 100% !important;
    top: 0 !important;
  }
}

@media (min-width: 778px) {
  .menu-open__text {
    margin-top: 10px;
    position: relative;
  }
  .menu-open {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .menu-open {
    margin-left: auto;
  }
  #menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  #menu.fixed .dedede{
    background: #000;
  }
  #menu.fixed .menu-open__icon-top,
  #menu.fixed .menu-open__icon-center,
  #menu.fixed .menu-open__icon-bottom {
    background-color: #ff7d00;
  }
  #menu.fixed .menu-open {
    height: 100px;
  }
}
@media (min-width: 576px) and (max-width: 992px) {
  .menu__consult {
    width: 10vw;
  }
}
@media (min-width: 576px) {
  .menu__sublist .menu__sublist-point a {
    margin-left: 1.5rem;
    position: relative;
  }
  .menu__sublist .menu__sublist-point a:before {
    content: "";
  }
}
@media (max-width: 576px) {
  .menu__body .social__list,
  .menu__body .menu__consult {
    display: none !important;
  }
}
