.site-header {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 14px;
  z-index: 1000;
  background-size: 1376px 79px;
  background-repeat: no-repeat;
  background-position: center;
  width: 1360px;
  max-width: 1360px;
  min-width: 1360px;
  height: 63px;
  padding: 0 20px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 4fr 1fr;
  transition: top 0.3s ease;
  border: 1px solid #151b1d;
  box-shadow: inset 4px 4px 8px rgba(255, 255, 255, 0.02), inset -4px -4px 8px rgba(255, 255, 255, 0.015);
}
@media (max-width: 768px) {
  .site-header {
    display: none;
  }
}
.site-header.scrolled {
  top: 14px;
}
.site-header .header-logo {
  display: flex;
  align-items: center;
}
.site-header .header-logo a {
  display: flex;
  align-items: center;
}
.site-header .header-logo a img {
  height: 30px;
  width: auto;
}
.site-header .header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.site-header .header-nav .nav-link {
  font-size: 14px;
  line-height: 19px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  text-transform: uppercase;
}
.site-header .header-nav .nav-link:hover, .site-header .header-nav .nav-link.active {
  color: #00ADD7;
}
.site-header .demo {
  width: 185px;
  height: 40px;
  border-radius: 13px;
  background-color: #FFFFFF;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 19px;
  color: #0A0911;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: auto;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header .demo img {
  width: 26px;
  height: 26px;
}
.site-header .demo:hover {
  background-color: #17D2FF;
  box-shadow: 0 0 25px 0 rgba(23, 210, 255, 0.6);
}
.site-header .demo:focus {
  background-color: #00ADD7;
}

.site-header-mobile {
  display: none;
}
@media (max-width: 768px) {
  .site-header-mobile {
    display: flex;
    align-items: center;
    padding: 0 10px;
    width: calc(100vw - 52px);
    position: fixed;
    left: 26px;
    top: 26px;
    height: 57px;
    z-index: 11;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #151b1d;
    box-shadow: inset 4px 4px 8px rgba(255, 255, 255, 0.02), inset -4px -4px 8px rgba(255, 255, 255, 0.015);
  }
  .site-header-mobile a {
    display: flex;
    align-items: center;
  }
  .site-header-mobile .header-nav {
    display: none;
  }
  .site-header-mobile .mobile-menu-toggle {
    display: flex;
  }
}
.site-header-mobile .demo {
  margin-right: 12px;
  margin-left: auto;
  width: 185px;
  height: 40px;
  border-radius: 13px;
  background-color: #FFFFFF;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 19px;
  color: #0A0911;
  text-transform: uppercase;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header-mobile .demo img {
  width: 26px;
  height: 26px;
}
.site-header-mobile .demo:hover {
  background-color: #17D2FF;
  box-shadow: 0 0 25px 0 rgba(23, 210, 255, 0.6);
}
.site-header-mobile .demo:focus {
  background-color: #00ADD7;
}
.site-header-mobile .mobile-menu-toggle {
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 3px;
  z-index: 1001;
}
.site-header-mobile .mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.site-header-mobile .mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  background: rgba(8, 27, 43, 0.8980392157);
}
.site-header-mobile .mobile-menu-overlay.active {
  display: flex;
  flex-direction: column;
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content {
  background: linear-gradient(180deg, #000000 0%, #0A0911 100%);
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  width: calc(100% - 20px);
  margin-left: 10px;
  margin-top: 10px;
  border-radius: 22px;
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content::-webkit-scrollbar {
  display: none;
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content .mobile-menu-header {
  display: flex;
  align-items: center;
  padding: 0 10px;
  width: calc(100vw - 52px);
  position: fixed;
  left: 26px;
  top: 26px;
  height: 57px;
  z-index: 11;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #151b1d;
  box-shadow: inset 4px 4px 8px rgba(255, 255, 255, 0.02), inset -4px -4px 8px rgba(255, 255, 255, 0.015);
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content .mobile-menu-header a {
  display: flex;
  align-items: center;
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content .mobile-menu-header .mobile-menu-demo {
  margin-right: 12px;
  margin-left: auto;
  width: 185px;
  height: 40px;
  border-radius: 13px;
  background-color: #FFFFFF;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 19px;
  color: #0A0911;
  text-transform: uppercase;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content .mobile-menu-header .mobile-menu-demo img {
  width: 26px;
  height: 26px;
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content .mobile-menu-header .mobile-menu-demo:hover {
  background-color: #17D2FF;
  box-shadow: 0 0 25px 0 rgba(23, 210, 255, 0.6);
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content .mobile-menu-header .mobile-menu-demo:focus {
  background-color: #00ADD7;
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content .mobile-menu-header .mobile-menu-close {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content .mobile-menu-header .mobile-menu-close svg {
  width: 28px;
  height: 28px;
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content .mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 113px 16px 16px;
  gap: 12px;
  flex: 1;
  background-image: url("../top-bg.png");
  background-position: center center;
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content .mobile-menu-nav .mobile-nav-link {
  font-size: 19px;
  line-height: 26px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.site-header-mobile .mobile-menu-overlay .mobile-menu-content .mobile-menu-nav .mobile-nav-link:hover, .site-header-mobile .mobile-menu-overlay .mobile-menu-content .mobile-menu-nav .mobile-nav-link.active {
  color: #00ADD7;
}
