.header {
  padding: 17px 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #FFFFFF;
  z-index: 1;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__icons {
  display: flex;
  align-items: center;
  outline: none;
}

.logo__link {
  outline: none;
  text-decoration: none;
  border: none;
}

.logo__link:hover {
  opacity: 0.7;
  transition: 0.4s ease-in;
}

.logo__link:focus {
  outline: none;
  box-shadow: 0 0 10px 
  #2F2F51;
  opacity: 0.7;
  transition: 0.4s ease-in;
}

/* .logo {
  outline: none;
  text-decoration: none;
  border: none;
  box-shadow: 0 0 0 1px #EF7F04, 0 0 10px 
  #2F2F51;
} */

.burger-menu {
  display: none;
  margin-right: 44px;
  width: 56px;
}

.burger-menu-line {
  display: block;
  position: relative;
  width: 100%;
  height: 7px;
  background-color: #EF7F1A;
  border-radius: 2px;
}

.burger-menu-line::after {
  content: '';
  width: 100%;
  height: 7px;
  background-color: #EF7F1A;
  border-radius: 2px;
  position: absolute;
  top: 14px;
}

.burger-menu-line::before {
  content: '';
  width: 100%;
  height: 7px;
  background-color: #EF7F1A;
  border-radius: 2px;
  position: absolute;
  top: -14px;
}

.logo {
  margin-right: 20px;
}

.navigation__list {
  display: flex;
  justify-content: space-between;
  width: 698px;
}

.navigation__link {
  text-decoration: none;
  border: none;
  margin-right: 24px;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  position: relative;
}

.navigation__link:hover, .navigation__link:focus {
color: #EF7F04;
transition: 0.2s ease-in;
outline: none;
}

.navigation__link::before {
  content: '';
  width: 100%;
  height: 4px;
  background-color: #EF7F04;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: -38px;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s ease-in;
}

.navigation__link:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.navigation__link:focus::before {
  transform: translate(-50%, -50%) scale(1);
}

.button {
  display: inline-flex;
  align-items: center;
  width: 170px;
  height: 40px;
  border-radius: 3px;
  border: none;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
}

.button:hover {
  opacity: 0.7;
  transition: 0.2s ease-in;
}

.button:focus {
  opacity: 0.7;
  transition: 0.2s ease-in;
}

.button_orange {
  background-color: #EF7F04;
}

.button_blue {
  background-color: #3B3A63;
  margin-left: 10px;
}

.button-icon {
  margin-right: 12px;
  margin-left: 10px;
}

@media (max-width: 992px) {
  .navigation__list {
    display: none;
  }

  .burger-menu {
    display: block;
  }
}