.header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 9;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  /* height: 100px; */
}
.header__wrapper {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.header__menu {
  flex: 1;
  padding-left: 70px;
  padding-right: 70px;
  display: flex;
  width: 100%;
  position: relative;
}
@media (max-width: 1200px) {
  .header__menu {
    padding-left: calc(10px + 60 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 1200px) {
  .header__menu {
    padding-right: calc(10px + 60 * ((100vw - 320px) / 880));
  }
}
.header__menu > li {
  height: 100%;
  display: flex;
  margin-bottom: 0;
  position: relative;
  flex-grow: 1;
}
.header__menu > li:first-child {
  flex-grow: 0.5;
}
.header__menu > li:first-child > a {
  justify-content: flex-start;
}
.header__menu > li:last-child {
  flex-grow: 0.5;
}
.header__menu > li:last-child > a {
  justify-content: flex-end;
}
.header__menu > li > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.header__menu li {
  list-style-type: none;
  margin-bottom: 0;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo__image {
  width: 110px;
}
.header .logo__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .logo__text {
  margin-left: 15px;
}
.header__contact {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.header__contact_mobile {
  display: none;
}
.header__contact_mobile svg {
  width: 20px;
  height: 20px;
}
.header__callback {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--dark1F);
  background: none;
  border: none;
  color: var(--green49);
}
@media (max-width: 1200px) {
  .header__callback {
    font-size: calc(14px + 2 * ((100vw - 320px) / 880));
  }
}
.header__callback:hover {
  color: var(--dark1F);
}
.header__social {
  display: flex;
  margin-left: auto;
  margin-right: 30px;
}
.header__social > *:not(:last-child) {
  margin-right: 10px;
}
.header__social-item {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green49);
  border: 1px solid var(--green49);
  border-radius: 50%;
  transition: var(--transition);
}
.header__social-item svg {
  fill: #fff;
}
.header__social-item svg path {
  fill: #fff;
}
.header__social-item:hover {
  background-color: transparent;
}
.header__social-item:hover svg {
  fill: var(--green49);
}
.header__social-item:hover svg path {
  fill: var(--green49);
}

@media (max-width: 1199px) {
  .header .logo__image img {
    width: 70px;
    height: 56px;
  }
  .header {
    height: 85px;
  }
}
@media (max-width: 991px) {
  .header__menu {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__contact_mobile {
    display: flex;
  }
  .header__contact {
    display: none;
  }
  .header__social-item {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 592px) {
  .header__social {
    margin-right: 10px;
  }
  .header .logo__image img {
    width: 60px;
  }
  .header .logo__text {
    margin-left: 5px;
    font-size: 12px;
  }
}/*# sourceMappingURL=header.css.map */