.section-documentations .page-menu__button:not(.active) {
  color: #bfbfbf;
}

.section-documentations .page-menu {
  margin-bottom: 20px;
}

.subtabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.subtabs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 113%;
  color: #314d71;
  padding: 5px 20px;
  border-radius: 100px;
  min-height: 38px;
  background: #f3efde;
  transition: color 0.3s, background 0.3s;
}

.subtabs__button.is-active,
.subtabs__button:hover {
  background: #2a96c5;
  color: #fff;
}

.subtabs__content-item:not(.is-active) {
  display: none;
}

@media (width<760px) {
  .subtabs__button {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .subtabs__nav {
    flex-wrap: nowrap;
    overflow: auto hidden;
    width: auto;
    margin-inline: -20px;
    padding-inline: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .subtabs__nav::-webkit-scrollbar {
    display: none;
  }
}