.header {
  position: sticky;
  top: 0;
  z-index: 99;
  transition: var(--transition);
}
.header.painted {
  background-color: var(--white);
  box-shadow: 0 1px 10px #888888;
}
/* .header.painted .mobile-menu-open {
  filter: invert(1);
}
.header.painted .mobile-menu-open {
  filter: invert(1);
}
.header.painted .header__logo {
  filter: brightness(0);
} */

#header .mobile-menu .menu-close {
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.header .mobile-menu .close {
  display: flex;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 2px;
  background-color: transparent;
}
.header .mobile-menu .close:after {
  content: "";
  display: block;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  top: 0;
  transition: 0.3s;
  transform: rotate(-45deg);
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
}
.header .mobile-menu .close:before {
  content: "";
  display: block;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  bottom: 0;
  transition: 0.3s;
  transform: rotate(45deg);
  top: 0;
  margin: auto;
  transition: all 0.3s;
}
.header .mobile-menu .menu-close:hover .close:after,
.header .mobile-menu .menu-close:hover .close:before {
  background-color: var(--text-hover);
}
.header.header-home {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header__soc-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
.header__soc-holder .soc__item {
  width: 30px;
  height: 30px;
}
.header__soc-holder .soc__item img,
.header__soc-holder .soc__item svg {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
@media (max-width: 800px) {
  .header__contact.addresses,
  .header__soc-holder {
    display: none;
  }
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: max(1.0416666667vw, 10px) 0;
  gap: 15px;
}
.header__right {
  display: flex;
  align-items: center;
  gap: max(8.6458333333vw, 20px);
  width: 50%;
}
@media (max-width: 1300px) {
  .header__right {
    width: auto;
  }
}
.header__logo {
  height: max(4.0104166667vw, 65px);
  max-width: 100%;
  display: block;
}
.header__logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.header__menu {
  display: flex;
  gap: max(2.6041666667vw, 20px);
  list-style: none;
  margin-left: max(1.3020833333vw, 5px);
}
.header__menu li {
  margin-bottom: 0;
}
.header__menu a {
  font-family: "Inter";
  font-weight: 400;
  font-size: max(0.7291666667vw, 14px);
  line-height: 150%;
  color: var(--text-color);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: all .3s;
}
.header__menu li:hover a {
  color: var(--text-hover);
}
.header__contact-value {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.header__contact.phones .header__contact-value svg path {
  fill: var(--text-color);
  transition: all 0.3s;
}
.header__contact.phones .header__contact-value:hover {
  color: var(--text-hover);
}
.header__contact.phones .header__contact-value:hover svg path {
  fill: var(--text-hover);
}
.header__contact-value svg,
.header__contact-value img {
  margin-right: max(0.2604166667vw, 5px);
  width: max(0.9375vw, 18px);
  height: max(0.9375vw, 18px);
  object-fit: contain;
}

@media (max-width: 1199px) {
  .header__right {
    gap: 40px;
  }
}
@media (max-width: 1100px) {
  .header__menu {
    display: none;
  }
}
@media (max-width: 700px) {
  .header__logo {
    max-width: 180px;
  }
  .header__logo img {
    width: 100%;
  }
  .header__right {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .header__contact.addresses {
    display: none;
  }
}
@media (max-width: 480px) {
  .header__contact-value svg {
    display: none;
  }
  .header__contact-value {
    font-size: 12px;
  }
  .header__logo {
    max-width: 120px;
  }
}
@media (max-width: 375px) {
  .header__wrap {
    gap: 10px;
  }
  .header__right {
    gap: 10px;
  }
  .header__logo {
    max-width: 90px;
  }
  .header__contact-value svg,
  .header__contact-value img {
    margin-right: 0;
    width: 20px;
    height: 20px;
  }
}

/*# sourceMappingURL=header.css.map */
