.header {
  padding-top: 62px;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  transition: .5s;
}

.header-l{
    position: relative;
}



.header-logo.header-logo-inv{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  max-width: 1240px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}

.header-r {
  display: flex;
  align-items: center;
}

.header-logo {
  display: block;
  width: 68px;
  height: 68px;
  overflow: hidden;
  transition: .5s;
}

.header-logo img {
  height: 400%;
  width: 400%;
  vertical-align: middle;
  transform: scale(0.25);
  transform-origin: 0 0;
}

.header-nav {
  display: flex;
  align-items: center;
}

.header-nav-item {
  font-weight: 500;
  font-size: 16px;
  line-height: calc(20 / 16);
  color: #ffffff;
  margin-right: 45px;
  display: flex;
  align-items: center;
}

.header-nav-item:last-child {
  margin-right: 0;
}

.header-nav-item-img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
  overflow: hidden;
}

.header-nav-item-img img{
  height: 400%;
  width: 400%;
  vertical-align: middle;
  transform: scale(0.25);
  transform-origin: 0 0;
}

.header-phone{
  display: flex;
  align-items: center;
  margin-left: 45px;
}

.header-phone span{
    font-weight: 600;
    font-size: 20px;
    line-height: calc(24 / 20);
    color: #F89D6A;
}

.header-phone img {
  width: 19px;
  margin-right: 11px;
}

.header-burger{
  display: none;
}

.header-nav-close{
  display: none;
}

.header.white  {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
}

.header.white .header-logo.header-logo-inv{
    opacity: 1;
}

.header.white .header-logo{
    opacity: 0;
}

.header.white .header-nav-item{
  color: #111;
}

.header.white-abs  {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
}

.header.white-abs .header-logo.header-logo-inv{
    opacity: 1;
}

.header.white-abs .header-logo{
    opacity: 0;
}

.header.white-abs .header-nav-item{
  color: #111;
}

.header-nav-item-loc{
    position: relative;
}

.header.white .header-nav-item-loc-items{
    background-color: #fff;
}

.header.white-abs .header-nav-item-loc-items{
    background-color: #fff;
}

.header-nav-item-loc-items{
    position: absolute;
    left: -15px;
    top: calc(100% + 10px);
    height: 110px;
    padding: 15px;
    overflow: hidden;
    display: none;
    overflow: auto;
}

.header-nav-item-loc-items.active{
    display: block;
}

.header-nav-item-loc{
    cursor: pointer;
}

.header-nav-item-loc-item{
    margin-bottom: 10px;
}

.header-phone.mob{
    display: none;
}

@media (max-width: 1220px) {
  .header-phone{
    margin-left: 40px;
  }
  .header-phone span{
      font-size: 14px;
  }
  .header-nav-item{
    font-size: 14px;
  }
  .header-logo{
    width: 68px;
  }
  .header-nav-item{
    margin-right: 40px;
  }
  .header{
    padding-top: 30px;
  }
}

@media (max-width: 1020px) {
    .header-nav-item{
        margin-right: 20px;
    }
    .header-nav-item-img{
        width: 19px;
        height: 19px;
        margin-right: 5px;
    }
    .header-phone{
        margin-left: 20px;
    }
    .header-phone img{
        margin-right: 5px;
    }
}

@media (max-width: 880px) {
  .header-nav-item{
    font-size: 13px;
    margin-right: 20px;
  }
  .header-logo{
    width: 68px;
  }
  .header{
    padding-top: 20px;
  }
}

@media (max-width: 830px) {
  .header-phone.mob{
      display: flex;
      width: 56px;
      height: 56px;
  }
  .header-phone.mob img{
      width: 100%;
  }
  .header-phone{
      display: none;
  }
  .header.white {
    padding: 0;
  }
  .header.white .header-burger-line{
    background-color: #111;
  }
  .header.white-abs {
    padding: 0;
  }
  .header.white-abs .header-burger-line{
    background-color: #111;
  }
  .header-burger{
    display: block;
  }
  .header-nav{
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background-color: #fff;
    align-items: flex-start;
    padding: 80px 20px;
    transition: .5s;
    z-index: 5;
  }
  .header-nav.active{
    left: 0;
  }
  .header-nav-item{
    color: #111;
    margin-right: 0;
    font-size: 24px;
    margin-bottom: 10px;
  }
  .header-nav-item-img{
    display: none;
  }
  .header-burger-line{
    width: 34px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 11px;
  }
  .header-nav-item-loc-items{
      height: 140px;
  }
  .header-burger-line:last-child{
    margin-bottom: 0;
  }
  .header-phone{
    margin-left: 0;
  }
  .header-nav-close{
    display: block;
    width: 40px;
    position: absolute;
    left: 20px;
    top: 20px;
  }
  .header-nav-close img{
    width: 100%;
  }
}