/*
Custom Style
=========================== */

nav {
    min-height: 60px;
    background: var(--primary);
}

nav .wrap-core-nav-list,
nav .nav-header {
    background: var(--primary);
}

nav .brand {
    display: block;
    position: relative;
    max-width: 100%;
    width: 140px;
    padding: 5px 5px;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;

    /* position: relative;
    max-width: 100%;
    width: 100%;
    height: 100px;
    padding: 60px 60px;
    background: #fff;
    background-image: url(../images/logo.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto; */

}

/* .core-nav.nav-core-sticky.on-scroll .brand {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100px;
    padding: 60px 60px;
    background: #fff;
    background-image: url(../images/logo-head.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
} */

nav .brand img {
    width: 100%;
}

nav .menu li a {
    display: block;
    padding: 20px 0px 20px 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    -webkit-transition: all 0.5s ease-in-out;
    -khtml-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

nav .menu li a.dropdown-item {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--primary);
    font-size: 15px;
}

.nav-item-sub a.dropdown-toggle {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--primary);
    font-size: 15px;
}

.dropdown-item.active, .dropdown-item:active {
    text-decoration: none;
    color: var(--secondary);
    background-color: var(--primary);
    background: var(--secondary);
}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--secondary);
    background-color: var(--primary);
    background: var(--secondary);
}

nav .menu li .dropdown>a.active,
nav .menu li .dropdown a:hover {
    color: var(--secondary);
    background: var(--primary);
}


nav .menu li>a.active,
nav .menu li a:hover {
    color: var(--secondary);
    background: #f0732800;
    -webkit-transition: all 0.5s ease-in-out;
    -khtml-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

nav button {
    background: transparent;
    border: none;
    outline: none;
}

@media (max-width: 992px) {

    nav .full-container,
    nav .nav-container {
        padding-left: 0;
        padding-right: 0;
    }

    nav .nav-header {
        min-height: 70px;
    }

    nav .nav-header .brand {
        margin: 0 auto 0px;
        float: inline-end;
        text-align: end;
        right: 15px;
    }

    nav .nav-header .toggle-bar {
        font-size: 30px;
        position: absolute;
        top: 13px;
        left: 15px;
        color: #fff;
    }

    nav .menu li a {
        padding: 10px 10px;
        border-bottom: solid 1px #efefef;
    }

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

    nav .brand {
        width: 170px;
        padding: 0;
        background: #ffffff00;
        box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 0%) !important;
        top: 7px;
    }
}


/* =========================== */