@keyframes slide-down{
	0%
	{
		opacity:0;transform:translateY(-100%)
	}
	to
	{opacity:.9;transform:translateY(0)
	}100%
}

.headerModule, .sticky {	 	width: 100%;	z-index: 99999;}
.sticky { position: fixed !important; animation: slide-down .7s; top: 0; left: 0;}
.sticky {box-shadow: 0 2px 10px 0 hsla(0,0%,71%,.24);}

/* Submenus on Desktop */
@media (min-width: 1081px) {
/* ===== Menu Structure - hs-menu-depth-x components are <li>s ===== */
  .hs-menu-depth-1 {
    position: relative;
  }

  .hs-menu-depth-1 .hs-menu-depth-2 {
    padding: 0;
  }

  .hs-menu-depth-1 .hs-menu-depth-2:first-child {
    padding-top: 20px;
  }

  .hs-menu-depth-1 .hs-menu-depth-2:last-child {
    padding-bottom: 20px;
  }

  .hs-menu-wrapper .hs-menu-children-wrapper a {
    display: block;
    width: 100%;
    padding: 0 20px;
    position: relative; /* needed for ::after pseudo-element */
  }

  /* Flex & spacing */
  .hs-item-has-children,
  .hs-menu-depth-1 > .hs-menu-children-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Dropdown styling */
  .hs-menu-depth-1 > .hs-menu-children-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    list-style: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .hs-item-has-children:hover .hs-menu-children-wrapper {
    max-height: 50vh; /* adjust as needed */
  }

  /* ===== Submenu line animation ===== */
  .hs-menu-depth-1 li {
    width: 100%;
  }

  .hs-menu-depth-1 .hs-menu-children-wrapper > li a::after {
    content: "";
    position: absolute;
    right: 0;
    left: unset;
    bottom: 50%;
    width: 0;
    height: 1px;
    background-color: #333843;
    transition: all 0.3s ease;
  }

  .hs-menu-depth-1 .hs-menu-children-wrapper > li a:hover::after,
  .hs-menu-depth-1 .hs-menu-children-wrapper > li.active a::after {
    width: 20px;
    height: 1px;
  }
}