.menu-children{
    overflow: hidden;
}
.menu-outer{
    text-align: center;
}
.menu-outer h3{
    margin-top: unset;
    font-weight: 600;
    color: #fff;
}
.menu-outer h3.active{
    color: var(--titanYellow);
    transition: 0.3s;
}
.menu-child-list{
    margin-top: -200% !important;
    transition: 0.5s;
}
.menu-child-list.active{
    margin-top: 0% !important;
    transition: 0.5s;
}
.sub-menu-heading span{
    position: relative;
}
.sub-menu-heading span:hover{
    cursor: pointer;
}
.wp-block-navigation ul li{
    color: #d1d1d1;
}
.wp-block-navigation ul li:last-child{
    margin-bottom: 30px;
}
.sub-menu-heading span::after{
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(/wp-content/themes/titan-packaging/assets/images/right-yellow-chevron.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 3px;
    right: -30px;
    transform: rotate(0deg);
    transition: 0.5s;
}

.sub-menu-heading.active span::after{
    transform: rotate(90deg);
    transition: 0.5s;
    /* filter: brightness(0) saturate(100%) invert(14%) sepia(86%) saturate(4823%) hue-rotate(252deg) brightness(85%) contrast(131%); */
}


.sub-menu-heading.parent-with-url a span::after{
    content: none;
}

.menu-toggle-btn {
    background: none;
    border: none;
    width: 20px;
    height: 20px;
    background-image: url(/wp-content/themes/titan-packaging/assets/images/right-yellow-chevron.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 3px;
    right: -10px;
    transform: rotate(0deg);
    transition: 0.5s;
    cursor: pointer;
    position: relative;
}

.sub-menu-heading.active .menu-toggle-btn {
    transform: rotate(90deg);
    transition: 0.5s;
}
