footer .logo{
    color: var(--brand);
}

.footer-main .flex {
    justify-content: space-between;
    position: relative;
}

.footer-main {
    padding: 2rem 0;
}

.footer-info {
    padding: 1rem 0;
    background-color: var(--footer-bg);
    color: var(--footer-color);
}

.footer-info a{
    color: var(--footer-color);
}

#footer-menu-nav {
    margin-left: auto;
}

#footer-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    opacity: 0.5;
}

#footer-menu a {
    text-decoration: none;
}

#bottom-menu a[href="#"]{
    color: var(--text);
    cursor: default;
}

#bottom-menu,
#bottom-menu .sub-menu{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#bottom-menu > li > a{
    font-size: 1.5rem;
    line-height: 1.8rem;
}

#bottom-menu .menu-item-has-children{
    padding-right: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

#bottom-menu .menu-item-has-children:last-child{
    padding-right: 0;
    border-right: none;
}

#bottom-menu{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
}

#bottom-menu .sub-menu{
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    max-height: 9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

#bottom-menu a{
    text-decoration: none;
}

@media (max-width: 1000px) {
    #bottom-menu{
        flex-direction: column;
    }
    #bottom-menu .menu-item-has-children{
        padding-right: 0;
        border-right: none;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    #bottom-menu .sub-menu{
        max-height: none;
    }
}