.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: all 0.2s linear;
}
.header.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.header__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
}
.header__inner-logo a {
  padding: 20px 0;
}
.header__inner-logo a img {
  max-width: 150px;
  padding: 10px;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header__inner-logo a:hover img {
  -webkit-box-shadow: inset 46px 0px 30px 5px rgba(166, 0, 0, 0.5);
  box-shadow: inset 46px 0px 30px 5px rgba(166, 0, 0, 0.5);
}
.header__inner-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__inner-nav ul li a {
  margin: 0 5px;
  padding: 20px 7px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  font-family: var(--ff-special);
}
.header__inner-nav ul li a#lk {
  font-weight: 500;
  margin-left: 20px;
}
.header__inner-nav ul li a#lk:after {
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(166, 0, 0, 0.8);
}

.header__inner-nav ul li ul {
  position: absolute;
  top: 100%;
  min-width: 160px;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 10px 15px 20px 0;
  border-radius: 0 0 10px 10px;
  transition: all 0.2s ease-in-out;
}
.header__inner-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__inner-contacts_phoneNumber {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-right: 20px;
}
.header__inner-contacts_phoneNumber svg {
  width: 14px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header__inner-contacts_phoneNumber a {
  font-size: 15px;
  text-align: center;
}
.header__inner-contacts_phoneNumber:hover a {
  color: inherit !important;
}
.header__inner-contacts_phoneNumber:hover {
  -webkit-box-shadow: 0 0 40px 5px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px 5px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.header__inner-contacts a {
  width: 35px;
  height: 35px;
  margin: 0 5px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header__inner-contacts a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.header__inner-contacts a img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .header__inner-nav ul li a {
    margin: 0;
    padding: 5px 10px;
    font-size: 14px;
  }
  .header__inner-logo a img {
    max-width: 130px;
  }
  .header__inner-contacts a {
    width: 30px;
    height: 30px;
  }
  .header__inner-contacts_phoneNumber a {
    font-size: 14px;
  }
  .header__inner-contacts_phoneNumber svg {
    width: 13px;
  }
  .header__inner-nav ul li a#lk {
    margin-left: 15px;
  }
  .header__inner-nav ul li a#lk:after {
    bottom: 0;
    height: 2px;
  }
}
@media screen and (max-width: 992px) {
  .header__inner-nav ul li {
    margin-bottom: 15px;
  }
}

.header__inner.open {
  padding: 20px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header__inner-nav.open {
  display: block;
}
.header__inner-contacts.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__inner.open div {
  padding: 10px 0;
}
.header__inner-nav.open ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__inner-nav.open ul li a {
  margin: 5px 0;
}

.header__inner-contacts.open a {
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 992px) {
  .header__inner-nav {
    display: none;
  }
  .header__inner-contacts {
    display: none;
  }
  .header__inner-nav ul li a#lk {
    margin-left: 5px;
  }
}
