.hm-container{
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--menuFont);
}
.hm-menuItem{
    position: relative;
    display: block;
    text-decoration: none;
    padding: 1rem 1rem 5px 1rem;
    color: inherit;
    cursor: pointer;
    transition: 0.5s;
}
.hm-selected > .hm-underline{
    left: 0;
    right: 0;
}
.hm-menuItem > span{
    position: relative;
    white-space: nowrap;
    z-index: 2;
}
.hm-menuItem:hover > .hm-underline{
    left: 0;
    right: 0;
}
.hm-subMenu > .hm-menuItem:hover{
    background-color: white;
    color: var(--color1);
}
.hm-subsubMenu > .hm-menuItem:hover{
    background-color: white;
    color: var(--color1);
}
.hm-subsubsubMenu > .hm-menuItem:hover{
    background-color: white;
    color: var(--color1);
}
.hm-menuAlignleft{
    justify-content: left;
}
.hm-menuAligncenter{
    justify-content: center;
}
.hm-menuAlignright{
    justify-content: right;
}
.hm-menuIcon{
    display: none;
    background-image: url(/Public/icons/menu1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    padding: 1rem;
    cursor: pointer;
}
.hm-subMenuIcon::after{
    content: "\25BE";
}
.hm-subMenu{
    position: absolute;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    opacity: 0;
    background-color: var(--bgDark2);
    color: var(--colorLight1);
    left: 0;
    top: 100%;
    /*width: 300px;*/
    min-width: 100%;
    transform: translateY(60px);
    transition: 0.4s;
}
.hm-menuItem:last-child > .hm-subMenu{
    left: unset;
    right: 0;
}
.hm-menuItem:nth-child(7) > .hm-subMenu{
    left: unset;
    right: 0;
}
.hm-subsubMenu, .hm-subsubsubMenu{
    position: absolute;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    opacity: 0;
    background-color: var(--bgDark2);
    color: var(--colorLight1);
    left: 100%;
    top: 0;
    /*width: 300px;*/
    min-width: 100%;
    transform: translateY(60px);
    transition: 0.4s;
}
.hm-showSubMenu{
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}
.hm-underline{
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 3px;
    background-color: var(--colorLight1);
    transition: 0.3s;
}
.hm-hamburger{
    width: 30px;
    height: 30px;
    background-image: url(/Public/icons/help.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.hm-menuItemIcon{
    width: 30px;
}
@media (max-width: 1200px) {
    .hm-menuIcon {
        display: block;
    }
    .hm-container{
        display: none;
        flex-direction: column;
        width: 100%;
	    text-align: center;
    }
    .hm-subMenu, .hm-subsubMenu, .hm-subsubsubMenu{
        position: relative;
        display: none;
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
    }
}