.autohide {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  .scrolled-down {
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
  }
  .scrolled-up {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
  }
  .activel {
    font-weight: bold;
    color: blue;
  }
  .containts::before {
    content: "";
    display: block;
    width: 130px;
    height: 2px;
    background: white;
    left: 30px;
    opacity: 20;
    top: 50%;
    position: absolute;
  }
  @media only screen and (max-width: 767px) {
    body {
      height: fit-content !important;
      position: relative;
    }
  }
  @media only screen and (min-width: 768px) {
    body {
      height: fit-content !important;
      position: relative;
    }
  }