.header {
  margin-bottom: 61px;
  padding-top: 24px;
}

.header__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.header__logo {
  max-height: 92px;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 90px;
  margin-left: auto;
  padding: 20px 40px;
  max-height: 80px;
  border-radius: 10px;
  background-color: var(--color-orange);
}

.header__navigation-close {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: var(--color-white);
}

.header__contacts {
  display: block;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--color-orange);
  background-color: var(--color-white);
}

.header__burger {
  display: none;
}

.header__navigation.active {
  display: flex;
  transform: translateX(0);
}


@media(max-width: 1760px) {

}

@media(max-width: 1440px) {

}

@media(max-width: 1128px) {

}

@media(max-width: 940px) {

  .header__navigation {
    position: fixed;
    z-index: 20;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 50px 40px;
    max-height: unset;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    border-radius: 0;
    transform: translateX(100%);
    transition: transform .5s ease-in-out;
  }

  .header__navigation-close {
    display: block;
    margin-left: auto;
  }

  .header__nav {
    margin-bottom: 40px;
  }

  .header__nav-list {
    flex-direction: column;
    font-size: 25px;
  }

  .header__burger {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
}

@media(max-width: 576px) {

  .header {
    padding-top: 46px;
  }

  .header__logo {
    max-height: 62px;
  }

}

