    #ltc_menu>ul>li:nth-child(7)>div>ul {
        width: 7.5vw;
    }

    #ltc_menu a {
        color: inherit;
        text-decoration: inherit;
    }

ul.ltc_menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    background: white;
    padding: 5px 0px 5px 0px;
    align-items: center;
    width: 90vw;
    align-self: center;
    justify-self: center;
}

    .ltc_submenu_wrapper {
        height: 0px;
        overflow: hidden;
        transition: height 0.3s ease-in;
        position: absolute;
        top: 0px;
        left: 0px;
        margin-top: calc(3rem);
        max-width: 10vw;
    }

    #ltc_menu ul.ltc_submenu {
        list-style: none;
        padding: 10px;
        background: white;
        width: 10vw;
        margin: 0px;
    }

    #ltc_menu li.ltc_menu_item {
        position: relative;
    }

    li.ltc_menu_item:hover .ltc_submenu_wrapper {
        height: 50vh;
    }

    #ltc_menu li.ltc_menu_item:hover .menu-item-icon {
        transform: rotate(180deg);
    }

    #ltc_menu li.ltc_menu_item>a {
        font-size: 1.5rem;
        color: rgb(70, 84, 95);
        font-weight: 400;
        line-height: 1rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 5px;
    }

    #ltc_menu li.ltc_menu_item>a>svg {
        height: 1rem;
        width: 1rem;
        transition: transform 0.3s ease-in;
    }

    #ltc_menu li.ltc_submenu_item a {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 2rem;
        color: rgb(70, 84, 95);
    }


    #ltc_menu li.ltc_menu_item.luxe {
        padding: 5px 15px 5px 15px;
        background: #B49753;
        border-radius: 10px;
    }

    #ltc_menu li.ltc_menu_item>a>svg.luxe-icon {
        width: 4rem;
        height: 2rem;
    }