/* Menu */
.menu {
    background-color: #000;
    font-size: 14px;
    text-transform: uppercase;
}

.menu-ul {
    list-style-type: none;
    display: flex;
    justify-content: start;
    padding-left: 0px;
}

.menu-ul li {
    position: relative;
}

.menu-ul li a {
    color: #FFF;
    text-decoration: none;
    padding: 12px 25px;
    display: block;
}

.menu-ul li.menu-item-has-children > a::after {
    content: '';
    background: url('../../assets/svg/icon-angle-down.svg') no-repeat;
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 10px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    top: 20px;
}

@media (min-width: 899px) {
    .menu-ul li.menu-item-has-children > a::after {
        top: 50%;
    }

    .menu-ul li.menu-item-has-children a {
        padding: 12px 35px 12px 25px;
        width: 100%;
    }
}

.menu-ul li.menu-item-has-children > a.flechasvg::after {
    transform: translateY(-50%) rotate(180deg);
}

.menu-ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #928C76;
    list-style-type: none;
    border: 1px solid #fff;
    padding-left: 0px;
    text-transform: none;
    width: 230px;
}

.menu-ul li:hover {
    background-color: #2C2C2C;
}

.menu-ul li.show > ul.sub-menu {
    display: block;
}

@media (min-width: 769px) {
    .menu-ul li:hover ul.sub-menu {
        display: block;
        z-index: 9;
    }
}

.menu-ul li ul li a {
    padding: 15px 25px;
}

.menu-ul li ul li a:hover {
    background-color: #86806A;
}

/* Responsive Design */
@media (max-width: 899px) {
    .menu-ul li:hover {
        background-color: unset;
    }

    .menu-ul li ul.show {
        display: block;
    }

    .menu-ul li ul.sub-menu {
        border: none;
    }
    .menu-ul li {
        border-bottom: 1px solid #928c76;
    }

    .menu-ul li ul.sub-menu li {
        border-bottom: none;
    }

    .menu-ul li:last-child {
        border-bottom: none;
    }

    .menu-ul li a {
        padding: 5px;
    }

    .menu-ul li ul.sub-menu li a {
        color: #fff;
        padding: 5px 25px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 10px;
        background-color: #000;
        color: #FFF;
        text-align: center;
        font-weight: bold;
        text-transform: none;
        justify-content: center;
    }

    .menu-toggle::before {
        content: '';
        background: url('../../assets/svg/menu-bars.svg') no-repeat;
        background-size: 15px 15px;
        width: 15px;
        height: 15px;
        margin-right: 10px;
        display: inline-block;
        fill: #fff;
    }

    .menu-toggle.show::before {
        content: '';
        background: url('../../assets/svg/menu-x.svg') no-repeat;
        background-size: 15px 15px;
    }

    .menu-ul {
        flex-direction: column;
        display: none;
    }

    .menu-ul.show {
        display: flex;
        padding: 10px 20px;
    }

    .menu-ul li ul.sub-menu {
        position: static;
        background-color: #928C76;
        width: 100%;
    }

    .menu-ul li.show > ul.sub-menu {
        display: block;
    }
}

@media (min-width: 899px) {
    .menu-toggle {
        display: none;
    }
}

