.header {
  background-color: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 0 20px;
}

.header__container {
  height: 76px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigation__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 50px;
}

.navigation__list li:nth-child(1) a:hover {
  background-color: var(--white-color) !important;
  color: var(--blue-color);
}

.burger {
  width: 30px;
  height: 27px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
}

.logo p {
  color: #000;
  font-size: 25px;
  font-weight: bold;
}

body.active {
  overflow-y: hidden;
}

@media (max-width: 700px) {
  .navigation {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 0;
    height: 100vh;
    top: 76px;
    left: 25px;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    border-top: 1px solid #e1e3e1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .navigation ul {
    margin-top: 80px;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 25px;
    gap: 20px;
  }

  .navigation ul li a {
    font-size: 18px;
  }

  .navigation.active {
    transform: translateX(0);
  }

  .burger {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
  }

  .burger::after,
  .burger::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
  }

  .burger::after {
    bottom: 2px;
  }

  .burger::before {
    top: 2px;
  }

  .burger span {
    width: 100%;
    height: 2px;
    background-color: #000;
  }

  .burger.active span {
    display: none;
  }

  .burger.active::after {
    transform: rotate(45deg);
    top: 50%;
  }

  .burger.active::before {
    transform: rotate(-45deg);
    top: 50%;
  }
}

@media (max-width: 430px) {
  .logo p {
    max-width: 110px;
    line-height: 100%;
    font-size: 20px;
  }
}
