.static-page .header {
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  .static-page .header {
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 100;
 
  }
}

.static-page .header__content {
  width: 100%;
}

.static-page .header__box {
  display: flex;
  align-items: center;
  margin: 0 auto;
  display: flex;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 0 40px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .static-page .header__box {
    padding: 17px 25px;
    background-color: #fbfbfb;
    display: block;
    width: 100%;
    position: relative;
  }
}

.static-page .mobile-padding  {
  height: 38px;
}

.static-page .header__box main {
  display: flex;
  align-items: center;
}

.static-page .header__box aside {
  border-bottom: 1px solid #f4f4f4;
  width: 940px;
  overflow: hidden;
  overflow-x: auto;
  padding: 0;
}

.static-page .header__box aside li {
  flex-shrink: 0;
}

.static-page .header__box aside::-webkit-scrollbar {
  display: none;
  height: 0;
}

@media (max-width: 768px) {
  .static-page .header__box aside {
    display: none;
  }
}

.static-page .header__page-title {
  font-family: "Karma", sans-serif, "Sharp Grotesk Bold 15", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Helvetica", "Arial", "Apple Color Emoji", "Segoe UI Emoji";
  margin: 0;
  font-weight: 500;
  font-size: 18px;
}

@media (max-width: 768px) {
  .static-page .header__page-title {
    font-size: 20px;
  }
}

.static-page .header__main {
  display: flex;
  position: relative;
  justify-content: flex-start; 
  align-items: center;
  height: 127px;
  margin-left: 40px;
}

@media (max-width: 768px) {
  .static-page .header__main {
    margin-left: 25px;
  }
}

@media (max-width: 768px) {
  .static-page .header__main {
    height: 70px;
  }

  .static-page .header__main:after {
    content: '';
    position: absolute;
    left: -24px;
    right: 24px;
    bottom: 0;
    height: 1px;
    width: calc(100% + 48px);
    background-color: #f4f4f4 ;
  }
}

.static-page .header__main  .menu {
  position: absolute;
  right: 25px;
  display: none;
}

@media (max-width: 768px) {
  .static-page .header__main  .menu.active {
    display: block;
  }
}


.static-page .header__main-logo {
  position: absolute;
  width: 198px;
  top: 35px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .static-page .header__main-logo {
    width: 120px;
    margin-left: 0;
    top: 16px;
  }
}

.static-page .header__button {
  display: flex;
  color: #fff;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 768px) {
  .static-page .header__button {
    color: #000;
  }
}

.static-page .header__button svg {
  margin-left: 10px;
  fill: #000;
}

.static-page .header__links {
  margin: 0;
  padding: 20px 0;
  list-style: none;
  width: 100%;
  overflow: hidden;
  display: flex;
  overflow-x: scroll;
  width: 100vw;
}

.static-page .header__links::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.static-page .header__links::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}

@media (max-width: 768px) {
  .static-page .header__links  {
    display: block;
    width: 100%;
  }
}

.static-page .header__links li a {
  text-align: center;
  position: relative;
  display: flex;
  color: #000;
  opacity: 1;
  padding: 0 3px;
  line-height: 1.8;
  margin-right: 44px;
}

@media (max-width: 768px) {
  .static-page .header__links li a {
    padding: 18px 24px;
    margin-right: 0;
  }
}

.static-page .header__links li a:hover, .header__links li a:focus {
  color: #000;
}

.static-page .header__links li a:hover::after, .header__links li a:focus::after {
  opacity: 1;
}

.static-page .header__links li a.current-page {
  background: #f4f4f4;
  color: #000;
}

.static-page .header__main .home-page {
  align-items: center;
  gap: 6px;
  font-size: 14px;
  position: relative;
}

@media (max-width: 768px) {
  .static-page .header__main .home-page {
    display: none;
  }
}