

.header {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 32px 0;
  }
  
  .header-block {
    position: relative !important;
  }
  
  .header-burger {
    display: none;
  }
  
  .header .container {
    max-width: 1695px;
    margin: 0 auto;
  }
  
  .header-logo img {
    width: 100%;
    max-width: 169px;
  }
  
  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 55px;
         column-gap: 55px;
  }
  
  .header-menu {
    display: flex;
    align-items: center;
    -moz-column-gap: 104px;
         column-gap: 104px;
    flex-wrap: wrap;
  }
  
  .header-menu li a {
    font-family: "Kaspersky Sans Display";
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    transition: all 0.3s;
  }
  
  
  .header-burger {
    width: 32px;
    height: 32px;
    padding: 8px 4px;
    z-index: 10;
  }
  
  .header-burger span {
    position: absolute;
    width: 24px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    transition: all 0.3s;
  }
  
  .header-burger span:first-child {
    top: 8px;
  }
  
  .header-burger span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  
  .header-burger span:last-child {
    bottom: 8px;
  }
  
  .header-burger.active span {
    background: #29ccb1;
  }
  
  .header-burger.active span:first-child {
    top: 14px;
    transform: rotate(45deg);
  }
  
  .header-burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .header-burger.active span:last-child {
    bottom: 16px;
    transform: rotate(-45deg);
  }
  
  .header-logo.green {
    filter: brightness(0%) !important;
  }
  
  .header-menu li a:hover {
    color: #cccccc;
  }