main {
 margin-top: 125px;
}
@media (min-width: 1280px) {
  main {
 margin-top: 155px;
}
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #4a525b;
  color: #ffffff;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.mobile-menu:not(.open) {
  transition-delay: 0s, 0.3s;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-panel {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  
}

.main-panel {
  left: 0;
}

.sub-panel {
  visibility: hidden;
  transition: visibility 0s linear 0.4s;
  background: #4a525b;
}
.sub-panel.active {
  visibility: visible;
  transition: visibility 0s linear 0s;
}

.mobile-menu-inner {
  padding: 140px 40px 40px 40px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  height: calc(100dvh - 180px);
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #ec6726 #4a525b;
}

.badge-label {
  display: inline-block;
  background-color: #e07030;
  color: #fff;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  max-width: fit-content;
}

.submenu-header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.back-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff;
  width: 100%;
}

.submenu-intro {
  color: #ffffff !important;
  margin-bottom: 30px;
}
.submenu-intro h3 {
  color: #ffffff !important;
}
.intro-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}
.intro-desc {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.menu-list-wrapper {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.menu-item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 5px 0;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.menu-card {
  display: block;
  background-color: #5d656e;
  padding: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.menu-card.mobile {
  margin-bottom: 15px;
}
.menu-card:hover {
  background-color: #fff;
  color: #000;
}
.menu-card.cursor-pointer {
  cursor: pointer;
}
.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.menu-card-title {
  font-size: 18px;
  font-weight: 700;
}
.menu-card-desc {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}
.mobile-menu-inner .menu-footer-area {
  margin-top: auto;
}
.spacer-top {
  margin-top: 50px;
}
.contact-cta {
  margin-top: 40px;
}
.contact-menu {
  max-width: 300px !important;
  width: 100%;
  display: inline-flex !important;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.contact-info p {
  margin: 5px 0;
}
.contact-info a {
  color: #ffffff !important;
  text-decoration: none;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 25px 0 10px 0;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.acc-icon {
  transition: transform 0.2s ease;
  color: #ec6726;
}

.accordion-item.open .acc-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
  color: #ffffff;
}
.accordion-link-list {
  margin-top: 30px;
}
.accordion-item.open .accordion-content {
  max-height: 1000px;
  padding-bottom: 20px;
}

.accordion-sub-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.accordion-sub-link .menu-arrow {
  color: #e07030;
}
.simple-text-link {
  color: #e07030;
  display: block;
  margin-top: 10px;
}
.file-link {
  text-decoration: underline;
  margin-bottom: 5px;
}

.menu-arrow {
  color: #e07030;
}
.uk-icon > * {
  width: 30px;
  height: 30px;
}

.desktop-wrapper {
  display: none;
}

@media (min-width: 1280px) {
  .slider-container {
    display: none !important;
  }
  .desktop-container {
    width: 100%;
    padding: 200px 20px 70px 20px;
    max-width: 1300px;
    margin: 0 auto;
    column-gap: 60px;
    display: flex;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #ec6726 #4a525b;
  }
  .desktop-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .desktop-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .desktop-header {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
  }
  .desktop-header p {
    margin: 0;
  }

  .desktop-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
  }

  .desktop-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 40%;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  .desktop-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 20px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 10px;
  }

  .desktop-arrow {
    color: #ec6726;
    transition: color 0.2s ease;
  }

  .desktop-nav-item.is-active {
    background-color: #e4e5e6;
    color: #1a1a1a;
    border-radius: 50px;
  }

  .desktop-sub-col {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .desktop-sub-headline {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 800;
  }

  .desktop-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #929698;
    padding-top: 15px;
    padding-left: 20px;
  }

  .desktop-sub-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .desktop-arrow-sub {
    color: #e07030;
  }

  .desktop-footer {
    display: inline-flex;
    margin-top: auto;
    padding-top: 40px;
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
  }
  .footer-separator {
    margin: 0 10px;
  }
  .footer-text a {
    color: #ffffff !important;
    text-decoration: none;
  }

  .desktop-image {
    width: 31%;
    height: 560px;
    overflow: hidden;
  }
  .desktop-image img {
    width: 100%;
    object-fit: cover;
    display: block;
  }
}

