header {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  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 40px;
}

@media screen and (max-width: 1380px) {
  header {
    padding: 0 20px;
  }
}

header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header #burger {
  position: relative;
  z-index: 9999999;
  cursor: pointer;
  width: 35px;
  height: 27px;
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0;
}

@media screen and (max-width: 1055px) {
  header #burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

header #burger > div {
  height: 4px;
  z-index: 999;
  border-radius: 20px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 100%;
  background-color: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header #burger:hover div {
  background-color: #999999;
}

header #burger.active div:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(45deg);
          transform: translateY(11px) rotate(45deg);
  background-color: #fff;
  width: 100%;
}

header #burger.active div:nth-child(2) {
  opacity: 0;
  background-color: #fff;
}

header #burger.active div:nth-child(3) {
  -webkit-transform: translateY(-12px) rotate(-45deg);
          transform: translateY(-12px) rotate(-45deg);
  background-color: #fff;
  width: 100%;
}

header .header-back {
  position: fixed;
  z-index: 999998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(33, 33, 33, 0.5);
  display: none;
}

header .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

@media screen and (max-width: 1380px) {
  header .header-menu li .tel {
    margin-left: 20px !important;
  }
}

@media screen and (max-width: 1140px) {
  header .header-menu a {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 1055px) {
  header .header-menu {
    position: fixed;
    top: 0;
    right: 0;
    padding: 100px 10px 0 20px;
    height: calc(100vh - 100px);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    z-index: 999999;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    background: black;
    -webkit-backdrop-filter: blur(24.5px);
            backdrop-filter: blur(24.5px);
  }
  header .header-menu li {
    margin: 10px !important;
  }
  header .header-menu li a {
    font-size: 28px !important;
    line-height: 32px !important;
    margin: 0 !important;
  }
  header .header-menu li:has(> .tel) {
    margin-top: auto !important;
    margin-bottom: 10px !important;
  }
}

header .header-menu.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

header .header-menu li {
  list-style-type: none;
}

header .header-menu li a {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  margin-right: 40px;
}

header .header-menu li .tel {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  margin-left: 60px;
  margin-right: 0;
}
/*# sourceMappingURL=header.css.map */