
.treckNav {
  .nav-horizontal-scroll ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    overflow-x: scroll;
    width: 100%;
    list-style: none;
    padding: 0 auto;
    margin: 0 auto;
    overflow-y: visible;
    /* box-shadow: 0px 4px 10px rgb(50 54 57); */
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  ::-webkit-scrollbar {
    display: none;
  }

  .nav-horizontal-scroll ul li {
    padding: 1em;
    text-align: center;
    word-break: keep-all;
    flex-shrink: 0;
    min-width: 100px;
  }

  nav.nav-horizontal-scroll {
    overflow: visible;
  }

  .nav-horizontal-scroll ul li.nav-active,
  .nav-horizontal-scroll ul li:hover,
  .nav-horizontal-scroll ul li:active {
    background: rgb(113, 179, 230);
    color: white;
    cursor: pointer;
  }

  span {
    width: fit-content;
  }

  section.page.page-active {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: -webkit-fill-available;
    overflow: hidden;
  }

  section.page {
    padding: 100px 0;
    display: none;
  }
}