.header {
    min-height: 60px;
}


.header-menu {
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    z-index: 100;
}
@media (max-width:768px) {
  .header-menu {
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 60px;
}
}

.header-logo {
    display: flex;
    align-items: center;
    z-index: 51;
}

.header-logo__img {
    max-width: 100px;
    z-index: 51;
}
@media (max-width: 425px) {
  .header-logo__img {
    max-width: 80px;
    z-index: 51;
}
}

.header-logo__text {
    text-transform: uppercase;
    font-weight: 600;
}
@media (max-width: 425px) {
  .header-logo__text {
    font-size: 16px;
}
}
@media (max-width: 350px) {
  .header-logo__text {
    font-size: 14px;
}
}

.header-logo__text span {
  font-family: "Balsamiq Sans";
    color: #965186;
    text-transform: none;
}
@media (max-width: 425px) {
  .header-logo__text span {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .header-logo__text span {
    font-size: 13px;
    line-height: normal;
  }
}

.nav {
    flex-grow: 1;
    text-align: right;
}

.nav__link {
  font-family: "Balsamiq Sans";
    padding: 10px 20px;
    border-radius: 65px;
    text-decoration: none;
    font-size: 16px;
    color: #444444;
    background-color: #FFF4BD;
}

.nav__link:hover {
    border: 1px dashed #965186;
}

.nav__link img {
  vertical-align: middle;
}

.nav__link.n4 {
  border-radius: 10px;
  padding: 10px;
}

.header-burger-menu {
    display: none;
    z-index: 51;
  }

@media (max-width:775px) {
    body.lock {
      overflow: hidden;
    }

    .header-burger-menu {
     display: block;
     position: relative;
     width: 30px;
     height: 20px;
     z-index: 3;
  }
  
  .header-burger-menu span {
    position: absolute;
    background-color: #000;
    width: 100%;
    height: 2px;
    left: -10px;
    top: 9px;
  }
  
  .header-burger-menu::before,
  .header-burger-menu::after {
    content: '';
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 2px;
    left: -10px;
  }
  
  .header-burger-menu::before {
    top: 0;
  }
  
  .header-burger-menu::after {
    bottom: 0;
  }
  
  .header-burger-menu.active::before {
    transform:rotate(45deg);
    top: 9px;
  }
  
  .header-burger-menu.active::after {
    transform:rotate(-45deg);
    bottom: 9px;
  }
  
  .header-burger-menu.active span {
    transform:scale(0);
  }
  
  .nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: all 0.3s ease 0s;
    background-color: rgb(151, 157, 215)
  }
  
  .nav.active {
    top: 0;
  }
  
  .nav__link {
    margin: 5px auto;
  }
}