.header {
  position: relative;
  z-index: 1000
}
.header__inner {
  background-color: #000;
  padding: 13px 0
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px
}
.header__logo {
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,.5)
}
.header__logo img {
  width: 100%;
  height: auto
}
.header__nav {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%
}
.header__nav-block {
  display: flex
}
.header__burger {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: #1f1f1f;
  border-radius: 10px
}
.header__burger-wrap {
  position: relative;
  width: 24px;
  height: 21px
}
.header__burger-line {
  display: block;
  border-radius: 50px;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transition: .3s linear .1s
}
.header__burger:hover:not(:active):not(.active) .header__burger-line {
  background-color: #039a9f
}
.header__burger.active .header__burger-line {
  transition: .3s linear;
  background-color: transparent
}
.header__burger-line::after,
.header__burger-line::before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #fff;
  border-radius: 50px;
  transition: .3s linear
}
.header__burger:hover:not(:active) .header__burger-line::after,
.header__burger:hover:not(:active) .header__burger-line::before {
  background-color: #039a9f
}
.header__burger-line::before {
  transform: translateY(-7px)
}
.header__burger.active .header__burger-line::before {
  transition: .3s linear .1s;
  transform: translateY(0) rotate(-45deg)
}
.header__burger-line::after {
  transform: translateY(7px)
}
.header__burger.active .header__burger-line::after {
  transition: .3s linear .1s;
  transform: translateY(0) rotate(45deg)
}
.header__button-block {
  display: flex;
  gap: 12px
}
.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-family: FuturaPT,Arial,sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  color: #fff;
  background-color: #00aaa7;
  border-radius: 12px
}
.header__btn_white {
  color: #000;
  background-color: #fff
}
.header__btn_icon span {
  display: none
}
.header__btn_icon svg {
  width: 32px;
  height: 32px
}
@media (min-width:768px) {
  .header__burger {
    display: none
  }
}
@media (max-width:1450px) {
  .header__inner {
    padding: 20px 0
  }
  .header__container {
    padding: 0 22px
  }
  .header__logo {
    width: 123px;
    padding-right: 15px
  }
  .header__button-block {
    gap: 9px
  }
  .header__btn {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 9px
  }
}
@media (max-width:1024px) {
  .header__inner {
    padding: 15px 0
  }
  .header__container {
    padding: 0 16px
  }
  .header__logo {
    width: 87px;
    padding-right: 11px
  }
  .header__btn {
    padding: 6px 9px;
    font-size: 9px;
    border-radius: 6px
  }
  .header__btn_icon span {
    display: block
  }
  .header__btn_icon svg {
    width: 19px;
    height: 19px;
    margin-left: 4px
  }
}
@media (max-width:767px) {
  .header__container {
    padding: 0 15px
  }
  .header__logo {
    width: 114px;
    padding-right: 0;
    border: none
  }
  .header__nav {
    position: fixed;
    background-color: #fff;
    width: 100%;
    top: 70px;
    left: 0;
    bottom: 0;
    padding: 24px 15px 30px;
    z-index: 400;
    display: none
  }
  .header__nav.show {
    display: block
  }
  .header__button-block {
    margin-top: 38px;
    flex-direction: column
  }
  .header__btn {
    padding: 16px;
    font-size: 16px;
    border-radius: 16px
  }
  .header__btn_white {
    color: #fff;
    background-color: #00aaa7
  }
}