.carousel-nav-icon {
  height: 48px;
  width: 48px;
}
.carousel-item {
  .col,
  .col-sm,
  .col-md {
    margin: 8px;
    height: 300px;
    background-size: cover;
    background-position: center center;
  }
}
/* Basic styling for the mobile menu */

.th-menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
}

.th-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.th-mobile-menu > ul > li {
  position: relative;
}

.th-mobile-menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #000;
}

.th-mobile-menu .sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  position: relative;
}

.th-mobile-menu .sub-menu .sub-menu {
  padding-left: 0; /* Remove indentation for nested submenus */
}

.th-mobile-menu .sub-menu li {
  padding: 10px;
}

.th-mobile-menu .sub-menu li a {
  text-decoration: none;
  color: #000;
}

.th-mobile-menu .menu-item-has-children > a::after {
  content: " ▼"; /* Down arrow for dropdown */
  float: right;
}

.th-mobile-menu .menu-item-has-children.active > a::after {
  content: " ▲"; /* Up arrow when active */
}

/* Ensure submenu is shown on mobile */
@media (max-width: 768px) {
  .th-mobile-menu .sub-menu {
    display: block; /* Ensure sub-menus are block level on mobile */
  }
}
