.main-menu-overlay {
  position: fixed;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  top: 155px;
}

.main-menu-overlay.is-scrolled {
  top: 115px;
}

.main-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-container {
  max-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
}

.default-layout {
  display: flex;
  background: #4a525b;
  max-width: 1300px;
  width: 100%;
  padding: 60px 30px;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #ec6726 #4a525b;
}

.flex-levels {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

.slate-layout {
  display: flex;
  justify-content: center;
  background: #4a525b;
  padding: 60px 30px;
  gap: 70px;
  width: 865px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #ec6726 #4a525b;
}

.slate-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 50%;
}
 .slate-content {
display: flex;
  flex-direction: column;
  width: 50%;

 }

.col-level-1, .col-level-2, .col-level-3 {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.intro-title {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.intro-desc {
  font-size: 14px;
  line-height: 1.5;
  max-width: 300px;
  margin-top: 22px;
}

.level-headline {
  font-size: 18px;
font-weight: 800;
border-bottom: 1px solid #929698;
padding-bottom: 5px;
display: inline-block;
color: white;
}

.menu-card {
  background: #5d656e;
  padding: 20px;
  text-decoration: none;
  transition: 0.2s;
  color: white;
  display: block;
}
.menu-card.is-active {
  background-color: #fff;
  color: #000 !important;
}

.menu-card:hover {
  background-color: #fff;
  color: #000 !important;
}
.slate-link {
  display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.menu-card.small {
  padding: 15px;
}

.menu-card.small .card-title {
  font-weight: 700;
  font-size: 16px;
}

.menu-card-top, .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.menu-card-title {
  font-size: 18px;
  font-weight: 700;
}
.items-grid {

    margin-top: 50px;
}
.card-desc {
  font-size: 12px;
  margin: 0;
}

.card-link {
  display: inline-block;
  margin-top: 10px;
  color: #ec6726;
  font-weight: 700;
  font-size: 14px;
}

.menu-link-item {
  cursor: pointer;
  border-radius: 200px;
  transition: background-color 0.2s;
}

.menu-link-item .link-content {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.menu-link-item:hover {
  background-color: #fff;
}
.menu-link-item.is-active {
  background-color: #fff;
}

.menu-link-item.is-active .link-content {
  color: #000;
}


.menu-link-item:hover .link-content {
  color: #000;
}

.menu-arrow, .link-arrow, .acc-arrow, .group-icon {
  color: #ec6726;
  width: 30px;
  height: 30px;
}
.acc-arrow > *{ 
  height: 20px !important;
  width: 20px !important;
}

.uk-icon > * {
  width: 30px;
  height: 30px;
}

.nav-item {
  position: relative;
}

.accordion-trigger.overlay {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  background: none;
  border: none;
  color: #ffffff;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.group-underline {
  position: relative;
  text-decoration: none;
}

.group-underline::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  height: 0.075em;
  width: 0;
  background-color: currentColor;
  transition: width 500ms;
}

.group:hover .group-underline::after {
  width: 100%;
}

.group-icon {
  transition: transform 500ms;
}

.group:hover .group-icon {
  transform: rotate(-45deg);
}

.submenu-content-wrapper {
  animation: menuFadeIn 0.3s ease forwards;
}

@keyframes menuFadeIn {
  from { opacity: 0; transform: translateX(5px); }
  to { opacity: 1; transform: translateX(0); }
}