  .catdec,
  .catspe {
    background-color: transparent !important;
    border-radius: 0;
    border: none !important;
    color: black;
  }

  .scroll-container {
    overflow-x: visible !important;
    white-space: normal !important;
  }

  .scroll-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.6s ease-in-out;
}

  .scroll-content.show {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
}
  .scroll-content ul {
  display: flex !important;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

  .scroll-content ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.scroll-content ul li {
    width: 33.3%;
    box-sizing: border-box;
    padding: 8px;
}

/* Small screens: 2 items per row */
@media (max-width: 767px) {
    .scroll-content ul li {
        width: 50%;
    }
}

/* Large screens: 4 items per row */
@media (min-width: 1200px) {
    .scroll-content ul li {
        width: 20%;
    }
}

  .scroller {
    display: none !important;
  }

 .horizontal {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }
      .horizontal a{
    background-color:transparent !important;
    border:none !important;
    color:#4b3b38 !important;
  }
  .last-item {
    margin-right: 0;
}
 .spin {
    animation: spin 0.4s linear;
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(180deg); }
  }

.navbar-inner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-left {
  flex-shrink: 0;
}

.menu-toggle i {
    font-size: 24px;
    color: #fff;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
   
}
.menu-toggle {
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
}