header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: #fff;
  padding: 16px 0;
  transition: box-shadow 0.12s linear;
}
header.scrolled {
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.12s linear;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left > span {
  display: none;
}

.burger {
  position: relative;
  display: block;
  padding: 0;
  width: 22px;
  height: 18px;
  outline: none;
  background: transparent;
}
.burger:hover span {
  background: #FF6569;
}
.burger:hover::after, .burger:hover::before {
  background: #FF6569;
}
.burger span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 6px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  transition: all 0.12s ease;
}
.burger::after, .burger::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 6px;
  left: 0;
  transition: all 0.12s ease;
}
.burger::before {
  top: 0;
}
.burger::after {
  bottom: 0;
}
.burger.open::before {
  top: auto;
  transform: translate(0, -50%) rotate(-45deg);
  transition: all 0.12s ease;
}
.burger.open::after {
  bottom: auto;
  transform: translate(0, -50%) rotate(45deg);
  transition: all 0.12s ease;
}
.burger.open span {
  left: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.12s ease;
}

.header-logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0px);
}

.h-contact {
  display: none;
}

.btcontacts {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 4px;
  line-height: 1;
  background: none;
  padding: 0;
  outline: none;
}
.btcontacts::after {
  display: flex;
  font-family: "icons";
  width: 9px;
  height: 6px;
  font-size: 6px;
  color: #000000;
  content: "\e912";
}
.btcontacts[class^=ico]::before, .btcontacts[class*=ico]::before {
  font-family: "icons" !important;
  font-size: 17px;
  color: #000;
}

@media screen and (min-width: 600px) {
  header {
    padding: 32px 0;
  }
  .burger {
    width: 33px;
    height: 26px;
  }
  .burger span {
    height: 4px;
    border-radius: 8px;
  }
  .burger::after, .burger::before {
    height: 4px;
    border-radius: 8px;
  }
  .btcontacts {
    gap: 6px;
  }
  .btcontacts[class^=ico]::before, .btcontacts[class*=ico]::before {
    font-family: "icons" !important;
    font-size: 25px;
    color: #000;
  }
}
@media screen and (min-width: 1024px) {
  header {
    padding: 32px 0;
  }
  .burger {
    width: 44px;
    height: 34px;
  }
  .burger span {
    height: 5px;
    border-radius: 10px;
  }
  .burger::after, .burger::before {
    height: 5px;
    border-radius: 10px;
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .header-left > span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
  }
  .h-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .h-contact > a {
    color: #000;
    text-align: right;
    font-family: var(--lato);
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
    text-decoration-color: transparent;
    transition: color 0.12s linear;
  }
  .h-contact > a:hover {
    color: #FF6569;
    transition: color 0.12s linear;
  }
  .h-contact span {
    text-align: right;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
  }
  .btcontacts {
    display: none;
  }
}
@media screen and (min-width: 1366px) {
  .h-contact span {
    font-size: 14px;
  }
}