.header {
  z-index: 1000;
  padding-top: 10px;
  width: 100%;
  height: 60px;
  background-color: #0F0F0F;
  display: flex;
  justify-content: space-around;
  position: fixed;
  align-items: center;
}
.header__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__localization {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-right: 20px;
}
.header__localization-lang {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: white;
}
.header__contacts {
  display: flex;
  gap: 30px;
  align-items: center;
}
.header__contacts a {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: white;
}
.header__contacts button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #151515;
  border-radius: 8px;
  width: 182px;
  height: 49px;
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.header__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  position: relative;
  cursor: pointer;
}
.header__plus span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #D73636;
}
.header__plus span:last-of-type {
  position: absolute;
  transform: rotateZ(90deg);
}

@media (max-width: 700px) {
  .header__contacts {
    display: none;
  }
}

/*# sourceMappingURL=header.css.map */
