@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500&family=Noto+Sans+Georgian&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500&family=Noto+Sans+Georgian&display=swap");
.header * {
  overflow-y: hidden;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__menu__logo {
  font-size: 24px;
}
.header__menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 10;
  gap: 20px;
}
.header__menu__link a {
  color: white;
  font-size: 18px;
}
@media (max-width: 558px) {
  .header {
    position: fixed;
    z-index: 8;
    width: 100%;
  }
  .header__background {
    background: black;
    z-index: 5;
  }
  .header .burger {
    display: block;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40px;
    z-index: 100;
    height: 20px;
  }
  .header__menu {
    background: #000;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
  }
  .header__menu__logo {
    font-size: 24px;
    position: relative;
    z-index: 3;
  }
  .header__menu .header__menu__list {
    padding: 80px 0 0 0;
    position: fixed;
    top: 50px;
    text-align: center;
    left: -100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 100%;
    background: green;
    z-index: 2;
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
  .header__menu .active {
    left: 0;
  }
  .header__menu__link {
    padding: 10px 0;
  }
  .header__menu a {
    font-size: 24px;
  }
  .header .burger span {
    position: absolute;
    width: 100%;
    left: 0;
    height: 3px;
    background: white;
    top: 9px;
  }
  .header .burger::after {
    content: "";
    position: absolute;
    top: 0px;
    width: 100%;
    height: 3px;
    background: white;
    left: 0;
  }
  .header .burger::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: white;
  }
}