header.header .content {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header.header .content .plug {
  width: 30px;
  height: 30px;
}
header.header .content .logo {
  width: 200px;
  height: 55px;
}
header.header .content .menuContainer {
  display: flex;
  align-items: center;
  gap: 40px;
}
header.header .content .menuContainer * {
  transition-duration: 0s;
}
header.header .content .menuContainer .phone {
  display: none;
}

@media (max-width: 850px) {
  header.header {
    position: relative;
  }
  header.header .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  header.header .content .logo {
    width: 47px;
    height: 56px;
  }
  header.header .content .menuContainer {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  header.header .content .menuContainer a {
    display: none;
  }
  header.header .content .menuContainer a.phone {
    display: block;
    width: 30px;
    height: 30px;
  }
  header.header .content .menuContainer a.phone img {
    width: 30px;
    height: 30px;
  }
  header.header .content .menuContainer button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
  }
  header.header .content .menuContainer button img {
    width: 30px;
    height: 30px;
  }
}/*# sourceMappingURL=header.css.map */