header {
  background-color: #121212;
  padding: 18px 0;
  position: relative;
  z-index: 2;
}
header .burger {
  display: none;
}
header .right {
  display: flex;
  align-items: center;
}
header .flex-wrapper {
  align-items: center;
}
header .logo {
  display: flex;
  gap: 7px;
}
header .logo .block {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
header .logo .block .title {
  font-family: "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: -1.93px;
  background: linear-gradient(135deg, #ffc000 0%, #ff950a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
header .logo .block .subtitle {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.96px;
  color: #ffffff;
  font-family: "Helvetica", sans-serif;
}
header .logo img {
  height: 52px;
  width: auto;
}
header .navigation {
  margin-right: 150px;
}
header .navigation .list {
  display: flex;
  gap: 40px;
  list-style: none;
}
header .navigation .list .item a {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: #fff;
}
header .navigation .list .item a:hover {
  color: #ff950a;
}
header .language {
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  margin-right: 21px;
  cursor: pointer;
  position: relative;
}
header .language .selected {
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}
header .language .select {
  position: absolute;
  display: none;
  cursor: pointer;
}
header .language:hover .select {
  display: block;
}
header .button {
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  gap: 16px;
  width: 241px;
  height: 52px;
}

@media screen and (max-width: 1024px) {
  header .navigation {
    margin-right: 30px;
  }
}
@media screen and (max-width: 860px) {
  header {
    padding: 12px 0;
  }
  header .burger {
    width: 20px;
    height: 14px;
    cursor: pointer;
  }
  header .navigation {
    position: fixed;
    width: 100%;
    height: calc(100vh - 48px);
    top: 48px;
    left: 0;
    background-color: #121212;
    z-index: 99;
    border-top: 1px solid #1e2029;
    padding: 40px 20px;
    transition: 0.3s;
    transform: translateX(100%);
  }
  header .navigation .list {
    flex-direction: column;
    gap: 40px;
  }
  header .navigation .list .item a {
    font-size: 24px;
    line-height: 29px;
    font-weight: 500;
  }
  header .button {
    position: fixed;
    bottom: 40px;
    left: 20px;
    width: calc(100% - 40px);
    max-width: 100%;
    height: 52px;
    z-index: 100;
    transform: translateX(120%);
  }
  header .language {
    height: 20px;
  }
  header .logo img {
    height: 24px;
  }
  header .burger {
    display: block;
  }
  header.open-burger .navigation,
  header.open-burger .button {
    transform: translateX(0);
  }
}